mirror of https://github.com/apache/cloudstack.git
ui: Close Create network form from Zones -> Physical Network (Guest) -> Traffic Types view (#4993)
This commit is contained in:
parent
0c47d4efd2
commit
155636902c
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue