Skip to content

Commit

Permalink
feat(app subscription): change icon name as per storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhigarg-bmw committed Aug 23, 2023
1 parent ddff9dd commit 50180b8
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ const AppSubscriptionDetailOverlay = ({
edit: [
[
{
editIcon: false,
icon: false,
inputValue: '',
},
{
editIcon:
icon:
UserService.hasRole(ROLES.APPSTORE_EDIT) &&
data?.offerSubscriptionStatus === SubscriptionStatus.ACTIVE,
inputValue: data?.tenantUrl ?? '',
Expand All @@ -159,36 +159,36 @@ const AppSubscriptionDetailOverlay = ({
],
[
{
editIcon: true,
icon: true,
inputValue: t('content.appSubscription.detailOverlay.appIdInfo'),
},
{
editIcon: false,
icon: false,
},
],
[
{
editIcon: true,
icon: true,
inputValue: t(
'content.appSubscription.detailOverlay.technicalNameInfo'
),
},
{
editIcon: false,
icon: false,
clickableLink: data?.technicalUserData[0]?.id
? `/techuserdetails/${data?.technicalUserData[0]?.id}`
: undefined,
},
],
[
{
editIcon: true,
icon: true,
inputValue: t(
'content.appSubscription.detailOverlay.technicalPermissionInfo'
),
},
{
editIcon: false,
icon: false,
},
],
],
Expand Down

0 comments on commit 50180b8

Please sign in to comment.