Skip to content

Commit

Permalink
Change error catches messages
Browse files Browse the repository at this point in the history
  • Loading branch information
juankaromo committed Dec 5, 2018
1 parent 3c2b3ac commit 2c0b5f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/directives/wz-tag-filter/wz-tag-filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ app.directive('wzTagFilter', function () {
$scope.newTag = '';
}
} catch (error) {
errorHandler.handle(error, 'Add filter');
errorHandler.handle(error, 'Error adding filter');
}
};

Expand Down Expand Up @@ -110,7 +110,7 @@ app.directive('wzTagFilter', function () {
});
$scope.queryFn({ 'q': queryObj.query, 'search': queryObj.search });
} catch (error) {
errorHandler.handle(error, 'Query filter request');
errorHandler.handle(error, 'Error in query request');
}
}

Expand Down

0 comments on commit 2c0b5f2

Please sign in to comment.