ui: Close Create network form from Zones -> Physical Network (Guest) -> Traffic Types view (#4993)

This commit is contained in:
Pearl Dsilva 2021-05-04 19:33:00 +05:30 committed by GitHub
parent 0c47d4efd2
commit 155636902c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -64,10 +64,10 @@
:maskClosable="false"
:footer="null"
:cancelText="$t('label.cancel')"
@cancel="showCreateForm = false"
@cancel="closeAction"
centered
width="auto">
<CreateNetwork :resource="{ zoneid: resource.zoneid }"/>
<CreateNetwork :resource="{ zoneid: resource.zoneid }" @close-action="closeAction"/>
</a-modal>
</a-spin>
@ -161,6 +161,9 @@ export default {
handleOpenShowCreateForm () {
this.showCreateForm = true
},
closeAction () {
this.showCreateForm = false
},
changePage (page, pageSize) {
this.page = page
this.pageSize = pageSize