Skip to content

Commit

Permalink
add condition to the UI whereby additional Extended data permission i…
Browse files Browse the repository at this point in the history
…s set (#1200)
  • Loading branch information
IrinaSouth authored Jan 29, 2025
1 parent 75d2788 commit ef95dd5
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,14 +415,16 @@ class _GroupPermissionDetailState extends State<_GroupPermissionDetailWidget> {
style: headerStyle,
),
)),
Center(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Text(
'Read Extended Feature Data',
style: headerStyle,
),
)),
if (widget
.bloc.mrClient.identityProviders.featurePropertyExtendedDataEnabled)
Center(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Text(
'Read Extended Feature Data',
style: headerStyle,
),
)),
]);
}

Expand Down

0 comments on commit ef95dd5

Please sign in to comment.