Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
Thanks @pmario
  • Loading branch information
Jermolene committed Nov 10, 2023
1 parent 5d20e98 commit 4897248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/modules/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,15 @@ exports.parseFilter = function(filterString) {
}
if(match[3]) {
operation.suffixes = [];
$tw.utils.each(match[3].split(":"),function(subsuffix) {
$tw.utils.each(match[3].split(":"),function(subsuffix) {
operation.suffixes.push([]);
$tw.utils.each(subsuffix.split(","),function(entry) {
entry = $tw.utils.trim(entry);
if(entry) {
operation.suffixes[operation.suffixes.length -1].push(entry);
}
});
});
});
}
}
if(match[4]) { // Opening square bracket
Expand Down

0 comments on commit 4897248

Please sign in to comment.