Skip to content

Commit

Permalink
fix(iam): change new tag to beta tag (#9794)
Browse files Browse the repository at this point in the history
ref: MANAGER-11946

Signed-off-by: David Arsène <[email protected]>
  • Loading branch information
darsene authored Aug 11, 2023
1 parent d04ae0c commit bbedf49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function AccountSidebar() {
menu.push({
id: 'iam',
label: t('sidebar_account_iam'),
badge: 'new',
badge: t('sidebar_tag_beta'),
href: navigation.getURL('iam', '/'),
pathMatcher: new RegExp('^/iam'),
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Node, NodeTag } from './node';
import bareMetalCloud from './services/bareMetalCloud';
import hostedPrivateCloud from './services/hostedPrivateCloud';
import publicCloud from './services/publicCloud';
import webCloud from './services/webCloud';
import network from './services/network';
import publicCloud from './services/publicCloud';
import telecom from './services/telecom';
import { Node, NodeTag } from './node';
import webCloud from './services/webCloud';

const root: Node = {
id: 'home',
Expand Down Expand Up @@ -72,7 +72,7 @@ const root: Node = {
application: 'iam',
hash: '#/',
},
tag: NodeTag.NEW,
tag: NodeTag.BETA,
count: false,
features: ['iam'],
}, {
Expand Down

0 comments on commit bbedf49

Please sign in to comment.