From: Lenz Grimmer Date: Wed, 29 Jan 2020 10:04:28 +0000 (+0100) Subject: mgr/dashboard: Change project name to "Ceph Dashboard" X-Git-Tag: v15.1.1~610^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=58b54b7f51cdcc136ce474129cc306950683be7c;p=ceph-ci.git mgr/dashboard: Change project name to "Ceph Dashboard" The Dashboard's "About" page still referred to the application as "Ceph Manager Dashboard". Changed the `projectName` constant to "Ceph Dashboard" to resolve this. Fixes: https://tracker.ceph.com/issues/43840 Signed-off-by: Lenz Grimmer --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts index cb99bd6338e..802c0d96f34 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts @@ -4,7 +4,7 @@ import { I18n } from '@ngx-translate/i18n-polyfill'; export class AppConstants { public static readonly organization = 'ceph'; - public static readonly projectName = 'Ceph Manager Dashboard'; + public static readonly projectName = 'Ceph Dashboard'; public static readonly license = 'Free software (LGPL 2.1).'; }