Generalizing error message when user inputs an invalid search

This commit is contained in:
jaredevantabor 2017-02-06 10:53:42 -08:00
parent f00214495a
commit ab57396fcf

View File

@ -270,7 +270,7 @@ export default ['$q', 'Rest', 'ProcessErrors', '$rootScope', 'Wait', 'DjangoSear
error(data, status) {
ProcessErrors($rootScope, null, status, null, {
hdr: 'Error!',
msg: 'Call to ' + this.url + '. GET returned: ' + status
msg: "Invalid search term entered."
});
}
};