Browse Source

refactor(gui): component name

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
pull/341/head
Pranav C 3 years ago
parent
commit
61f41a2c42
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/virtualCell/belogsToCell.vue
  2. 2
      packages/nc-gui/components/project/spreadsheet/components/virtualCell/components/itemChip.vue
  3. 2
      packages/nc-gui/components/project/spreadsheet/components/virtualCell/hasManyCell.vue
  4. 2
      packages/nc-gui/components/project/spreadsheet/components/virtualCell/manyToManyCell.vue
  5. 4
      packages/nc-gui/components/project/spreadsheet/views/xcGridView.vue

2
packages/nc-gui/components/project/spreadsheet/components/virtualCell/belogsToCell.vue

@ -96,7 +96,7 @@
<script>
import ApiFactory from "@/components/project/spreadsheet/apis/apiFactory";
import ListItems from "@/components/project/spreadsheet/components/virtualCell/components/listItems";
import ItemChip from "@/components/project/spreadsheet/components/virtualCell/components/item-chip";
import ItemChip from "~/components/project/spreadsheet/components/virtualCell/components/itemChip";
import ListChildItems from "@/components/project/spreadsheet/components/virtualCell/components/listChildItems";
export default {

2
packages/nc-gui/components/project/spreadsheet/components/virtualCell/components/item-chip.vue → packages/nc-gui/components/project/spreadsheet/components/virtualCell/components/itemChip.vue

@ -23,7 +23,7 @@
<script>
export default {
props: {
value: String,
value: [String, Number, Boolean],
active: Boolean,
item: Object
},

2
packages/nc-gui/components/project/spreadsheet/components/virtualCell/hasManyCell.vue

@ -117,7 +117,7 @@ import ApiFactory from "@/components/project/spreadsheet/apis/apiFactory";
import DlgLabelSubmitCancel from "@/components/utils/dlgLabelSubmitCancel";
import Pagination from "@/components/project/spreadsheet/components/pagination";
import ListItems from "@/components/project/spreadsheet/components/virtualCell/components/listItems";
import ItemChip from "@/components/project/spreadsheet/components/virtualCell/components/item-chip";
import ItemChip from "~/components/project/spreadsheet/components/virtualCell/components/itemChip";
import ListChildItems from "@/components/project/spreadsheet/components/virtualCell/components/listChildItems";
import listChildItemsModal
from "@/components/project/spreadsheet/components/virtualCell/components/listChildItemsModal";

2
packages/nc-gui/components/project/spreadsheet/components/virtualCell/manyToManyCell.vue

@ -110,7 +110,7 @@
import ApiFactory from "@/components/project/spreadsheet/apis/apiFactory";
import DlgLabelSubmitCancel from "@/components/utils/dlgLabelSubmitCancel";
import ListItems from "@/components/project/spreadsheet/components/virtualCell/components/listItems";
import ItemChip from "@/components/project/spreadsheet/components/virtualCell/components/item-chip";
import ItemChip from "~/components/project/spreadsheet/components/virtualCell/components/itemChip";
import ListChildItems from "@/components/project/spreadsheet/components/virtualCell/components/listChildItems";
import listChildItemsModal
from "@/components/project/spreadsheet/components/virtualCell/components/listChildItemsModal";

4
packages/nc-gui/components/project/spreadsheet/views/xcGridView.vue

@ -14,7 +14,7 @@
:class="$store.state.windows.darkTheme ? 'grey darken-3 grey--text text--lighten-1' : 'grey lighten-4 grey--text text--darken-2'"
v-xc-ver-resize
v-for="(col,i) in availableColumns"
:key=" col._cn"
:key="col._cn"
v-show="showFields[col._cn]"
@xcresize="onresize(col._cn,$event)"
@xcresizing="onXcResizing(col._cn,$event)"
@ -113,7 +113,7 @@
<td
class="cell pointer"
v-for="(columnObj,col) in availableColumns"
:key="row + columnObj._cn"
:key="row + columnObj._cn + col"
:class="{
'active' : !isPublicView && selected.col === col && selected.row === row && isEditable ,
'primary-column' : primaryValueColumn === columnObj._cn,

Loading…
Cancel
Save