Commit 4f1d495b by Alexandre de Verteuil Committed by Marcus Efraimsson

Fix typo s/Applicaiton/Application/ in error messages (#17765)

parent 77375f37
......@@ -37,7 +37,7 @@ export function getAppPluginPageError(meta: AppPluginMeta) {
return 'Plugin must be an app';
}
if (!meta.enabled) {
return 'Applicaiton Not Enabled';
return 'Application Not Enabled';
}
return null;
}
......
......@@ -35,7 +35,7 @@ export class AppPageCtrl {
return;
}
if (app.type !== 'app' || !app.enabled) {
this.$rootScope.appEvent('alert-error', ['Applicaiton Not Enabled', '']);
this.$rootScope.appEvent('alert-error', ['Application Not Enabled', '']);
this.navModel = this.navModelSrv.getNotFoundNav();
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment