Skip to content

Commit dcd336b

Browse files
author
NarrowsProjects
committed
chore: fix linter issue
1 parent e51b555 commit dcd336b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/public/components/Filters/common/FilteringModel.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,10 @@ export class FilteringModel extends Observable {
161161
}
162162

163163
if (unknownFilters.length) {
164-
this._warnings.set('Unknown Filters', `The filters: [${unknownFilters.join(', ')}]; are not reccognised. Check if they are spelled correctly.`);
164+
this._warnings.set(
165+
'Unknown Filters',
166+
`The filters: [${unknownFilters.join(', ')}]; are not reccognised. Check if they are spelled correctly.`,
167+
);
165168
} else {
166169
this._warnings.delete('Unknown Filters');
167170
}

0 commit comments

Comments
 (0)