Fix selection

This commit is contained in:
IRBorisov 2023-10-14 23:56:08 +03:00
parent 1cc41320ac
commit 4775b6270a
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ function SelectorButton({
const position = `px-1 flex flex-start items-center gap-1 ${dimensions}`
return (
<button type='button'
className={`text-sm small-caps ${!transparent && 'border'} ${cursor} ${position} text-btn text-controls ${transparent ? 'clr-hover' : colorClass}`}
className={`text-sm small-caps ${!transparent && 'border'} ${cursor} ${position} text-btn text-controls select-none ${transparent ? 'clr-hover' : colorClass}`}
title={tooltip}
{...props}
>

View File

@ -288,7 +288,7 @@ function ViewSideConstituents({ expression, baseHeight, activeID, onOpenEdit }:
onColumnVisibilityChange={setColumnVisibility}
noDataComponent={
<span className='flex flex-col justify-center p-2 text-center min-h-[5rem]'>
<span className='flex flex-col justify-center p-2 text-center min-h-[5rem] select-none'>
<p>Список конституент пуст</p>
<p>Измените параметры фильтра</p>
</span>