Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix(style): definition project name width
Browse files Browse the repository at this point in the history
  • Loading branch information
hibig committed Feb 29, 2024
1 parent 767dce0 commit c3de3bf
Showing 1 changed file with 14 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,20 @@
}
]"
>
<seal-select
v-model="formData.selector.projectNames"
:view-status="pageAction === PageAction.VIEW"
:options="projectList"
:required="true"
:multiple="true"
:max-tag-count="2"
:label="$t('resource.definition.detail.projectName')"
:style="{ width: `${InputWidth.LARGE}px` }"
@change="handleProjectChange"
>
</seal-select>
<div :style="{ width: `${InputWidth.LARGE}px` }">
<seal-select
v-model="formData.selector.projectNames"
:view-status="pageAction === PageAction.VIEW"
:options="projectList"
:required="true"
:multiple="true"
:max-tag-count="2"
:label="$t('resource.definition.detail.projectName')"
:style="{ width: `${InputWidth.LARGE}px` }"
@change="handleProjectChange"
>
</seal-select>
</div>
<a-button
v-if="pageAction === PageAction.EDIT"
type="text"
Expand Down

0 comments on commit c3de3bf

Please sign in to comment.