fix: 修复 playbook 没有刷新 form 的问题

This commit is contained in:
Aaron3S
2023-02-13 15:10:07 +08:00
committed by huailei
parent b2323784ae
commit 8e67f5544d

View File

@@ -1,8 +1,8 @@
<template>
<div>
<GenericListTable ref="list" :table-config="tableConfig" :header-actions="headerActions" />
<UploadDialog :visible.sync="uploadDialogVisible" @completed="refreshTable" />
<CreatePlaybookDialog :visible.sync="createDialogVisible" @completed="refreshTable" />
<UploadDialog v-if="uploadDialogVisible" :visible.sync="uploadDialogVisible" @completed="refreshTable" />
<CreatePlaybookDialog v-if="createDialogVisible" :visible.sync="createDialogVisible" @completed="refreshTable" />
</div>
</template>