Browse Source

fix: toggling JSON editor issue

re #617

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/628/head
Pranav C 3 years ago
parent
commit
74eab46756
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/editableCell/jsonEditableCell.vue

2
packages/nc-gui/components/project/spreadsheet/components/editableCell/jsonEditableCell.vue

@ -1,5 +1,5 @@
<template>
<v-dialog :is="expand ? 'v-dialog' : 'div'" :value="true" max-width="800px" class="cell-container" @keydown.stop.enter>
<v-dialog :is="expand ? 'v-dialog' : 'div'" v-model="expand" max-width="800px" class="cell-container" @keydown.stop.enter>
<div class="d-flex pa-1 " :class="{backgroundColor:expand}">
<v-spacer />
<v-icon small class="mr-2" @click="expand = !expand">

Loading…
Cancel
Save