Skip to content

Commit fd20bfd

Browse files
committed
fixing lint error
1 parent 004b1ca commit fd20bfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webui/src/js/viewModels/model-design-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ function(accUtils, i18n, ko, project, urlCatalog, viewHelper, wktLogger, ViewMod
166166
// Triggered when changes have been downloaded from the WRC backend, for the active WDT Model File provider.
167167
this.changesAutoDownloaded = (event) => {
168168
function filterOriginalModelProperties(array1, array2){
169-
return array1.filter(c => array2.findIndex(x=>x.uid == c.uid) > -1)
169+
return array1.filter(c => array2.findIndex(x => x.uid === c.uid) > -1);
170170
}
171171

172172
wktLogger.debug('Received changesAutoDownloaded event with modelContent = %s', event.detail.value);

0 commit comments

Comments
 (0)