Skip to content

Commit

Permalink
Merge pull request TencentBlueKing#1462 from hLinx/hotfix_3.5.x
Browse files Browse the repository at this point in the history
Hotfix 3.5.x
  • Loading branch information
hLinx authored Nov 8, 2022
2 parents 1235338 + 9ce618b commit 44570e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
<bk-input
:placeholder="parent.$t('account.输入确认端口')"
type="number"
:min="1"
:value="props.formData.dbPort"
@change="value => props.change('dbPort', value)" />
</jb-form-item>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
</div>
<jb-form-item>
<div class="input-wraper">
<bk-input v-model="info.amount" />
<bk-input
v-model="info.amount"
type="number"
:min="1" />
<bk-select
v-model="info.unit"
class="unit-item"
Expand Down

0 comments on commit 44570e7

Please sign in to comment.