File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
packages/manager/apps/identity-access-management/src Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ import { ChangelogLinks } from '@ovh-ux/manager-react-components' ;
2+
3+ export const CHANGELOG_LINKS : ChangelogLinks = {
4+ roadmap :
5+ 'https://github.com/orgs/ovh/projects/16/views/1?pane=info&sliceBy%5Bvalue%5D=Baremetal' ,
6+ changelog :
7+ 'https://github.com/orgs/ovh/projects/16/views/1?pane=info&sliceBy%5Bvalue%5D=Baremetal' ,
8+ 'feature-request' :
9+ 'https://github.com/orgs/ovh/projects/16/views/1?pane=info&sliceBy%5Bvalue%5D=Baremetal' ,
10+ } ;
11+
12+ export const CHANGELOG_CHAPTERS = [
13+ 'identity-security-operation' ,
14+ 'identity-access-management' ,
15+ 'identity-access-management' ,
16+ ] ;
Original file line number Diff line number Diff line change @@ -2,18 +2,23 @@ import React from 'react';
22import { useTranslation } from 'react-i18next' ;
33import {
44 BaseLayout ,
5+ ChangelogButton ,
56 HeadersProps ,
67 Notifications ,
78} from '@ovh-ux/manager-react-components' ;
89import TagsListDatagrid from './components/tagsListDatagrid/TagsListDatagrid.component' ;
910import { TagManagerContextProvider } from './TagManagerContext' ;
11+ import { CHANGELOG_LINKS , CHANGELOG_CHAPTERS } from '@/constants' ;
1012
1113export default function TagManager ( ) {
1214 const { t } = useTranslation ( 'tag-manager' ) ;
1315
1416 const header : HeadersProps = {
1517 title : t ( 'title' ) ,
1618 description : t ( 'description' ) ,
19+ changelogButton : (
20+ < ChangelogButton links = { CHANGELOG_LINKS } chapters = { CHANGELOG_CHAPTERS } />
21+ ) ,
1722 } ;
1823
1924 return (
You can’t perform that action at this time.
0 commit comments