File tree Expand file tree Collapse file tree
lib/public/components/Filters/common/filters Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /**
2+ * @license
3+ * Copyright CERN and copyright holders of ALICE O2. This software is
4+ * distributed under the terms of the GNU General Public License v3 (GPL
5+ * Version 3), copied verbatim in the file "COPYING".
6+ *
7+ * See http://alice-o2.web.cern.ch/license for full licensing information.
8+ *
9+ * In applying this license CERN does not waive the privileges and immunities
10+ * granted to it by virtue of its status as an Intergovernmental Organization
11+ * or submit itself to any jurisdiction.
12+ */
113import { Observable } from '/js/src/index.js' ;
214
315/**
@@ -60,7 +72,6 @@ export class ProcessedTextInputModel extends Observable {
6072 */
6173 update ( raw , parseValue = false ) {
6274 this . _raw = raw ;
63-
6475 if ( parseValue && this . _parse ) {
6576 try {
6677 const value = this . _parse ( raw ) ;
@@ -74,7 +85,6 @@ export class ProcessedTextInputModel extends Observable {
7485 // For now, simply ignore the new value if invalid
7586 }
7687 }
77-
7888 this . _visualChange$ . notify ( ) ;
7989 }
8090
You can’t perform that action at this time.
0 commit comments