Update modal code

This commit is contained in:
Dane Everitt
2019-05-10 22:50:59 -07:00
parent 2c73991f2b
commit 32db345238
8 changed files with 38 additions and 21 deletions

View File

@@ -18,7 +18,7 @@
<div>
<button class="btn btn-primary btn-lg" v-on:click="showCreateModal = true">Create new database</button>
</div>
<Modal :show="showCreateModal" v-on:close="showCreateModal = false">
<Modal :isVisible="showCreateModal" v-on:close="showCreateModal = false">
<CreateDatabaseModal
v-on:close="showCreateModal = false"
v-on:database="handleModalCallback"