summaryrefslogtreecommitdiffstats
path: root/ui/src/components/search.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/search.tsx')
-rw-r--r--ui/src/components/search.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/src/components/search.tsx b/ui/src/components/search.tsx
index 94bbbdb9..d2280cb2 100644
--- a/ui/src/components/search.tsx
+++ b/ui/src/components/search.tsx
@@ -23,6 +23,7 @@ import {
routeSortTypeToEnum,
pictshareAvatarThumbnail,
showAvatars,
+ toast,
} from '../utils';
import { PostListing } from './post-listing';
import { SortSelect } from './sort-select';
@@ -480,7 +481,7 @@ export class Search extends Component<any, SearchState> {
console.log(msg);
let op: UserOperation = msgOp(msg);
if (msg.error) {
- alert(i18n.t(msg.error));
+ toast(i18n.t(msg.error), 'danger');
return;
} else if (op == UserOperation.Search) {
let res: SearchResponse = msg;