Skip to content

Commit

Permalink
fix(minor): layers panel change as per multi page. (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
maharshivpatel authored Jul 5, 2024
2 parents 1b00d74 + a684e0f commit 23020b4
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,23 @@
layer.table?.label || layer.table?.fieldname || "Select Table"
}}</span>
</div>
<div
class="layer"
:class="{
'layer-active':
MainStore.getCurrentElementsId &&
MainStore.getCurrentElementsId.includes(layer.id),
}"
v-else-if="layer.type == 'page'"
>
<span class="fa fa-file-o" style="padding: 0px 10px 0px 5px"></span> Page
{{ layer.index + 1 }}
<AppLayer
class="childern-container"
v-if="layer.childrens.length"
:elements="layer.childrens"
/>
</div>
<div
class="layer"
:class="{
Expand Down

0 comments on commit 23020b4

Please sign in to comment.