diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-27 08:54:37 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-27 08:54:37 +1100 |
| commit | 083b96a5040ccc71d2c0fc13e374d19ad2454161 (patch) | |
| tree | 13c3156d0cdc0468648a05768ffe68c4aebe4456 /src/components/TileTree.vue | |
| parent | 4a469f8f6fab97d591929933b8cc73085955ab25 (diff) | |
Fix close-button unreliability bug
Diffstat (limited to 'src/components/TileTree.vue')
| -rw-r--r-- | src/components/TileTree.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TileTree.vue b/src/components/TileTree.vue index 9f64252..af3965e 100644 --- a/src/components/TileTree.vue +++ b/src/components/TileTree.vue @@ -471,7 +471,7 @@ export default defineComponent({ @sepd-parent-clicked="onSepdParentClicked" @info-icon-clicked="onInnerInfoIconClicked"/> <!-- Settings --> <!-- outer div prevents overflow from transitioning to/from off-screen --> - <div class="fixed left-0 top-0 w-full h-full overflow-hidden invisible" @click="closeClicked"> + <div class="fixed left-0 top-0 w-full h-full overflow-hidden invisible"> <transition name="slide-bottom-right"> <settings v-if="settingsOpen" :layoutOptions="layoutOptions" :componentOptions="componentOptions" @settings-close="onSettingsClose" @layout-option-change="onLayoutOptionChange"/> |
