chore: fix prettier formatting and npm audit vulnerabilities
Reformat admin/index.ts to satisfy prettier checks. Update package-lock.json via npm audit fix to resolve 17 vulnerabilities in transitive dev dependencies (webpack, babel, lodash, ws, semver, etc.).
This commit is contained in:
parent
81e7b6502d
commit
4412583cd9
File diff suppressed because it is too large
Load Diff
|
|
@ -12,12 +12,16 @@ class ReindexWarningWidget extends DashboardWidget {
|
|||
}
|
||||
|
||||
content() {
|
||||
return m(Alert, {
|
||||
type: 'warning',
|
||||
dismissible: false,
|
||||
icon: 'fas fa-exclamation-triangle',
|
||||
title: app.translator.trans('blomstra-search.admin.reindex-required.title'),
|
||||
}, app.translator.trans('blomstra-search.admin.reindex-required.detail'));
|
||||
return m(
|
||||
Alert,
|
||||
{
|
||||
type: 'warning',
|
||||
dismissible: false,
|
||||
icon: 'fas fa-exclamation-triangle',
|
||||
title: app.translator.trans('blomstra-search.admin.reindex-required.title'),
|
||||
},
|
||||
app.translator.trans('blomstra-search.admin.reindex-required.detail')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue