Browse Source

fix : removed unwanted ! - important

pull/7114/head
musharaf 9 months ago
parent
commit
b862466785
  1. 2
      packages/nc-gui/components/erd/TableNode.vue
  2. 2
      packages/nc-gui/components/smartsheet/column/LinkedToAnotherRecordOptions.vue
  3. 4
      packages/nc-gui/components/smartsheet/expanded-form/index.vue
  4. 9
      packages/nc-gui/components/smartsheet/header/Cell.vue

2
packages/nc-gui/components/erd/TableNode.vue

@ -54,7 +54,7 @@ watch(
</template>
<div
class="relative h-full max-w-[20rem] flex flex-col justify-center bg-white min-w-16 min-h-8 rounded-lg nc-erd-table-node"
class="relative h-full max-w-76 flex flex-col justify-center bg-white min-w-16 min-h-8 rounded-lg nc-erd-table-node"
:class="[
`nc-erd-table-node-${table.table_name}`,
showSkeleton ? 'cursor-pointer items-center min-h-200px min-w-300px' : '',

2
packages/nc-gui/components/smartsheet/column/LinkedToAnotherRecordOptions.vue

@ -74,7 +74,7 @@ const isLinks = computed(() => vModel.value.uidt === UITypes.Links)
v-model:value="vModel.childId"
show-search
:filter-option="filterOption"
dropdown-class-name="nc-dropdown-ltar-child-table "
dropdown-class-name="nc-dropdown-ltar-child-table"
@change="onDataTypeChange"
>
<a-select-option v-for="table of refTables" :key="table.title" :value="table.id">

4
packages/nc-gui/components/smartsheet/expanded-form/index.vue

@ -633,11 +633,11 @@ export default {
<div class="flex-1 xs:(w-full) mt-0.25 !h-[35px]">
<LazySmartsheetHeaderVirtualCell
v-if="isVirtualCol(col)"
class="nc-expanded-cell-header h-full !max-w-80"
class="nc-expanded-cell-header h-full max-w-80"
:column="col"
/>
<LazySmartsheetHeaderCell v-else class="nc-expanded-cell-header !max-w-80" :column="col" />
<LazySmartsheetHeaderCell v-else class="nc-expanded-cell-header max-w-80" :column="col" />
</div>
<template v-if="isLoading">

9
packages/nc-gui/components/smartsheet/header/Cell.vue

@ -95,19 +95,14 @@ const onClick = (e: Event) => {
:class="{
'cursor-pointer pt-0.25': !isForm && isUIAllowed('fieldEdit') && !hideMenu && !isExpandedForm,
'cursor-default': isForm || !isUIAllowed('fieldEdit') || hideMenu,
'!truncate': !isForm,
'truncate': !isForm,
}"
class="name pl-1"
placement="bottom"
>
<template #title> {{ column.title }} </template>
<div
:class="{
'!truncate': !isForm,
}"
:data-test-id="column.title"
>
<div :class="{ truncate: !isForm }" :data-test-id="column.title">
{{ column.title }}
</div>
</NcTooltip>

Loading…
Cancel
Save