diff --git a/public/app/features/plugins/AppRootPage.tsx b/public/app/features/plugins/AppRootPage.tsx index 0dfb5f13ace..8a841dd0f50 100644 --- a/public/app/features/plugins/AppRootPage.tsx +++ b/public/app/features/plugins/AppRootPage.tsx @@ -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; } diff --git a/public/app/features/plugins/plugin_page_ctrl.ts b/public/app/features/plugins/plugin_page_ctrl.ts index ff4b0fd8860..417250c0492 100644 --- a/public/app/features/plugins/plugin_page_ctrl.ts +++ b/public/app/features/plugins/plugin_page_ctrl.ts @@ -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; }