Browse Source

Merge pull request #3179 from nocodb/fix/gui-v2-easter-egg

fix(gui-v2): easter icons appear when toggling toolbar icons twice
pull/3180/head
Raju Udava 2 years ago committed by GitHub
parent
commit
5ec7971c14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      packages/nc-gui-v2/components/smartsheet/sidebar/toolbar/index.vue

6
packages/nc-gui-v2/components/smartsheet/sidebar/toolbar/index.vue

@ -39,15 +39,15 @@ const clickCount = $ref(0)
<div class="dot" />
</template>
<LockMenu v-if="isUIAllowed('view-type')" />
<LockMenu v-if="isUIAllowed('view-type')" @click.stop />
<div v-if="isUIAllowed('view-type')" class="dot" />
<Reload />
<Reload @click.stop />
<div class="dot" />
<AddRow v-if="isUIAllowed('xcDatatableEditable')" />
<AddRow v-if="isUIAllowed('xcDatatableEditable')" @click.stop />
<slot name="end" />
</div>

Loading…
Cancel
Save