Skip to content

Commit 1ec7cb6

Browse files
author
NarrowsProjects
committed
chore: remove extra space for negation in SelectionModel normalized setter
1 parent 1d9af1e commit 1ec7cb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/public/components/common/selection/SelectionModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ export class SelectionModel extends Observable {
358358
*/
359359
set normalized(value) {
360360
const options = value.split(',').map((option) => ({ value: option.trim() }));
361-
const postponeSelection = this.options instanceof RemoteData || ! this.options?.length;
361+
const postponeSelection = this.options instanceof RemoteData || !this.options?.length;
362362

363363
if (postponeSelection) {
364364
this._selectionBacklog = options;

0 commit comments

Comments
 (0)