Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Jan 17, 2024
1 parent f0be0db commit 9ca54a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ angular.module('QuepidApp')
}

function message() {
if (settingsSvc.isTrySelected() && settingsSvc.applicableSettings().searchEngine == 'static'){
if (settingsSvc.isTrySelected() && settingsSvc.applicableSettings().searchEngine === 'static'){
ctrl.canAddQueries = false;
}
if (ctrl.canAddQueries == true) {
if (ctrl.canAddQueries === true) {
return 'Add a query to this case';
}
else {
Expand Down

0 comments on commit 9ca54a2

Please sign in to comment.