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

This commit is contained in:
Alexandre de Verteuil 2019-06-25 14:59:58 -04:00 committed by Marcus Efraimsson
parent 77375f3772
commit 4f1d495ba1
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ export function getAppPluginPageError(meta: AppPluginMeta) {
return 'Plugin must be an app'; return 'Plugin must be an app';
} }
if (!meta.enabled) { if (!meta.enabled) {
return 'Applicaiton Not Enabled'; return 'Application Not Enabled';
} }
return null; return null;
} }

View File

@ -35,7 +35,7 @@ export class AppPageCtrl {
return; return;
} }
if (app.type !== 'app' || !app.enabled) { 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(); this.navModel = this.navModelSrv.getNotFoundNav();
return; return;
} }