From: Patrick Nawracay Date: Tue, 30 Oct 2018 13:41:20 +0000 (+0100) Subject: mgr/dashboard: Fix links to documentations X-Git-Tag: v14.1.0~1024^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4c8c55ff67f741319efdbc488ec037e2a40f9580;p=ceph.git mgr/dashboard: Fix links to documentations - Added anchor to Grafana in URL of OSD, Overall Performance - Fixed URL in Object Gateway, Buckets Signed-off-by: Patrick Nawracay --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-501/rgw-501.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-501/rgw-501.component.ts index 666ada886bc1..67fb868acb45 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-501/rgw-501.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-501/rgw-501.component.ts @@ -27,8 +27,9 @@ export class Rgw501Component implements OnInit, OnDestroy { } const releaseName = this.cephReleaseNamePipe.transform(summary.version); - this.docsUrl = `http://docs.ceph.com/docs/${releaseName}/mgr/dashboard/ - #enabling-the-object-gateway-management-frontend`; + this.docsUrl = + `http://docs.ceph.com/docs/${releaseName}/mgr/dashboard/` + + `#enabling-the-object-gateway-management-frontend`; setTimeout(() => { subs.unsubscribe(); diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/grafana/grafana.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/grafana/grafana.component.ts index 47b80a08a02b..2b3c044f1ea2 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/grafana/grafana.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/grafana/grafana.component.ts @@ -55,7 +55,9 @@ export class GrafanaComponent implements OnInit, OnChanges { } const releaseName = this.cephReleaseNamePipe.transform(summary.version); - this.docsUrl = `http://docs.ceph.com/docs/${releaseName}/mgr/dashboard/`; + this.docsUrl = + `http://docs.ceph.com/docs/${releaseName}/mgr/dashboard/` + + `#enabling-the-embedding-of-grafana-dashboards`; setTimeout(() => { subs.unsubscribe();