mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 15:26:38 +00:00
fix(nc-gui): Wrong chevron Icon in grouping UI
This commit is contained in:
@@ -8,7 +8,7 @@ import { generateJSON } from '@tiptap/html'
|
||||
import Underline from '@tiptap/extension-underline'
|
||||
import { TaskItem } from '@/helpers/dbTiptapExtensions/task-item'
|
||||
import { Link } from '@/helpers/dbTiptapExtensions/links'
|
||||
import { IsExpandedFormOpenInj, ReadonlyInj, RowHeightInj, IsFormInj } from '#imports'
|
||||
import { IsExpandedFormOpenInj, IsFormInj, ReadonlyInj, RowHeightInj } from '#imports'
|
||||
|
||||
const props = defineProps<{
|
||||
value?: string | null
|
||||
@@ -201,7 +201,8 @@ watch(editorDom, () => {
|
||||
'mt-2.5 flex-grow': fullMode,
|
||||
'nc-scrollbar-md': !fullMode || (!fullMode && isExpandedFormOpen),
|
||||
'flex-grow': isExpandedFormOpen,
|
||||
[`!overflow-hidden children:line-clamp-${rowHeight}`]: !fullMode && readOnly && rowHeight && !isExpandedFormOpen && !isForm,
|
||||
[`!overflow-hidden children:line-clamp-${rowHeight}`]:
|
||||
!fullMode && readOnly && rowHeight && !isExpandedFormOpen && !isForm,
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -271,7 +271,7 @@ watch(inputWrapperRef, () => {
|
||||
v-if="!isVisible"
|
||||
placement="bottom"
|
||||
class="!absolute right-0 hidden nc-text-area-expand-btn group-hover:block z-3"
|
||||
:class=" isExpandedFormOpen || isForm ? 'top-1' : 'bottom-1'"
|
||||
:class="isExpandedFormOpen || isForm ? 'top-1' : 'bottom-1'"
|
||||
>
|
||||
<template #title>{{ $t('title.expand') }}</template>
|
||||
<NcButton type="secondary" size="xsmall" data-testid="attachment-cell-file-picker-button" @click.stop="onExpand">
|
||||
|
||||
Reference in New Issue
Block a user