* make checkbox values ellipsis

* remoce unused classname
This commit is contained in:
AminTi 2023-10-19 12:33:01 +02:00 коммит произвёл GitHub
Родитель ca52cf5944
Коммит cb0d633ab9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -86,7 +86,7 @@ export class MultiValueControl extends React.Component<IMultiValueControlProps,
/>
<FocusZone
direction={FocusZoneDirection.vertical}
className="checkboxes"
>
{this.state.filter ? null :
<Checkbox
@ -106,7 +106,7 @@ export class MultiValueControl extends React.Component<IMultiValueControlProps,
onFocus: this._onFocus,
}}
onChange={() => this._toggleOption(o)}
label={this._wrapText(o)}
label={this._wrapText(o.length > 30 ? `${o.slice(0, 30)}...` : o)}
title={o}
/>)}
</FocusZone>