diff options
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts b/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts index 0058fa691..a6fbeed84 100644 --- a/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts +++ b/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts | |||
@@ -92,7 +92,12 @@ export class PluginSearchComponent implements OnInit { | |||
92 | this.pagination.totalItems = res.total | 92 | this.pagination.totalItems = res.total |
93 | }, | 93 | }, |
94 | 94 | ||
95 | err => this.notifier.error(err.message) | 95 | err => { |
96 | console.error(err) | ||
97 | |||
98 | const message = this.i18n('The plugin index is not available. Please retry later.') | ||
99 | this.notifier.error(message) | ||
100 | } | ||
96 | ) | 101 | ) |
97 | } | 102 | } |
98 | 103 | ||