Browse Source

fix hierarchy view not opening the correct modal

pull/4023/head
kevmodrome 6 years ago
parent
commit
4e48fc60a5
  1. 4
      packages/builder/src/components/nav/HierarchyRow.svelte

4
packages/builder/src/components/nav/HierarchyRow.svelte

@ -29,8 +29,10 @@
function selectHierarchyItem(node) { function selectHierarchyItem(node) {
store.selectExistingNode(node.nodeId) store.selectExistingNode(node.nodeId)
const modalType =
node.type === "index" ? CreateEditViewModal : CreateEditModelModal
open( open(
CreateEditViewModal, modalType,
{ {
onClosed: close, onClosed: close,
}, },

Loading…
Cancel
Save