Skip to content

Commit

Permalink
fixed codebeat reported 'no-fallthrough'
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp authored and Erwin Dondorp committed Aug 7, 2021
1 parent 962464b commit 7326e60
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions saltgui/static/sorttable/sorttable.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ export class SortTable {
if (node.nodeName.toLowerCase() === 'input') {
return node.value.replace(/^\s+|\s+$/g, '');
}
return node.nodeValue.replace(/^\s+|\s+$/g, '');
case 4:
return node.nodeValue.replace(/^\s+|\s+$/g, '');
case 1:
Expand Down

0 comments on commit 7326e60

Please sign in to comment.