Skip to content

Commit

Permalink
fix: Sonar warning Unexpected string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegoO committed Jul 17, 2024
1 parent 99cfbc1 commit eee4143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ angular.module('virtoCommerce.orderModule')
};

$scope.filterBy = function(field, value) {
filter.keyword = field + ':"' + value + '"';
filter.keyword = `${field}:"${value}"`;
blade.refresh();
};

Expand Down

0 comments on commit eee4143

Please sign in to comment.