mirror of https://github.com/apache/cloudstack.git
UI: fix create tags for LB rules (#6475)
This commit is contained in:
parent
c70bc9d69c
commit
dd3bd21fab
|
|
@ -204,7 +204,7 @@
|
|||
<a-input v-model:value="form.value" />
|
||||
</a-form-item>
|
||||
</div>
|
||||
<a-button :disabled="!('createTags' in $store.getters.apis)" type="primary" html-type="submit">{{ $t('label.add') }}</a-button>
|
||||
<a-button :disabled="!('createTags' in $store.getters.apis)" type="primary" ref="submit" @click="handleAddTag">{{ $t('label.add') }}</a-button>
|
||||
</a-form>
|
||||
|
||||
<a-divider />
|
||||
|
|
@ -834,6 +834,8 @@ export default {
|
|||
})
|
||||
}).catch(error => {
|
||||
this.formRef.value.scrollToField(error.errorFields[0].name)
|
||||
}).finally(() => {
|
||||
this.tagsModalLoading = false
|
||||
})
|
||||
},
|
||||
handleDeleteTag (tag) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue