Skip to content

Commit f9c1adb

Browse files
author
GuustMetz
committed
Merge branch 'improv/O2B-1548/Migrate-qcFlagTypesOverviewModel-to-use-FilteringModel-pattern' into improv/O2B-1549/Migrate-AnchoredSimulationPassesOverviewModel-and-SimulationPassesPerLhcPeriodOverviewModel-to-use-FilteringModel-pattern
2 parents 6fe055b + a9a1cd9 commit f9c1adb

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,6 @@ export class SelectionModel extends Observable {
339339
* @abstract
340340
*/
341341
get normalized() {
342-
return (this._allowEmpty || this._multiple)
343-
? this._selectedOptions.join()
344-
: this.current;
342+
return (this._allowEmpty || this._multiple) ? this.selected.join() : this.current;
345343
}
346344
}

0 commit comments

Comments
 (0)