Skip to content

Commit

Permalink
feat:流水线通知方式未生效时的交互优化 TencentBlueKing#10615
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 14807
  • Loading branch information
useryuyu committed Aug 9, 2024
1 parent 4da27e0 commit e1f6199
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
</bk-checkbox-group>
</bk-form-item>
<bk-form-item :label="$t('settings.additionUser')">
<staff-input
<user-input
name="additionUser"
:handle-change="(name, value) => subscription.users = value.join(',')"
:value="subscription.users.split(',').filter(Boolean)"
:placeholder="$t('settings.additionUserPlaceholder')">
</staff-input>
</user-input>
</bk-form-item>
<bk-form-item property="content" :label="$t('settings.noticeContent')" error-display-type="normal" :required="true">
<bk-input
Expand Down Expand Up @@ -69,14 +70,14 @@

<script>
import GroupIdSelector from '@/components/atomFormField/groupIdSelector'
import StaffInput from '@/components/atomFormField/StaffInput'
import AtomCheckbox from '@/components/atomFormField/AtomCheckbox'
import UserInput from '@/components/atomFormField/UserInput/index.vue'
export default {
name: 'notify-setting',
components: {
GroupIdSelector,
StaffInput,
AtomCheckbox
AtomCheckbox,
UserInput
},
props: {
subscription: Object,
Expand Down

0 comments on commit e1f6199

Please sign in to comment.