This commit is contained in:
Ivan 2025-07-29 23:03:29 +03:00
parent ceacd900c6
commit 271a0399f0
2 changed files with 4 additions and 5 deletions

View File

@ -33,10 +33,9 @@ export function ViewConstituents({
autoScroll
}: ViewConstituentsProps) {
return (
<aside className={cn(!noBorder && 'border', className)}>
<div className={cn(!noBorder && 'border', className)}>
<ConstituentsSearch
schema={schema} //
dense={dense}
dense={dense} //
hideGraphFilter={!activeCst}
/>
<TableSideConstituents
@ -47,6 +46,6 @@ export function ViewConstituents({
autoScroll={autoScroll}
onDoubleClick={onDoubleClick}
/>
</aside>
</div>
);
}

View File

@ -122,7 +122,7 @@ export function EditorConstituenta() {
</div>
<ViewConstituents
className={clsx(
'cc-animate-sidebar',
'cc-animate-sidebar min-h-55',
isNarrow ? 'mt-3 mx-6 rounded-md overflow-hidden' : 'mt-9 rounded-l-md rounded-r-none overflow-visible',
showList ? 'max-w-full' : 'opacity-0 max-w-0'
)}