Browse Source

Merge pull request #6904 from nocodb/nc-fix/grp-header

fix: group by header
pull/6910/head
Muhammed Mustafa 1 year ago committed by GitHub
parent
commit
32c2b2e205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      packages/nc-gui/components/smartsheet/grid/Table.vue

7
packages/nc-gui/components/smartsheet/grid/Table.vue

@ -1256,10 +1256,11 @@ onKeyStroke('ArrowDown', onDown)
<div class="table-overlay" :class="{ 'nc-grid-skelton-loader': showSkeleton }"> <div class="table-overlay" :class="{ 'nc-grid-skelton-loader': showSkeleton }">
<table <table
ref="smartTable" ref="smartTable"
class="xc-row-table nc-grid backgroundColorDefault !h-auto bg-white relative pr-60 pb-12" class="xc-row-table nc-grid backgroundColorDefault !h-auto bg-white relative"
:class="{ :class="{
mobile: isMobileMode, 'mobile': isMobileMode,
desktop: !isMobileMode, 'desktop': !isMobileMode,
'pr-60 pb-12': !headerOnly,
}" }"
@contextmenu="showContextMenu" @contextmenu="showContextMenu"
> >

Loading…
Cancel
Save