Skip to content

Commit

Permalink
Fix spaces on 'Who' section's Alerts
Browse files Browse the repository at this point in the history
The Alerts of the Sudo rules > 'Who' section
need to have an extra space to show the text.

Signed-off-by: Carla Martinez <[email protected]>
  • Loading branch information
carma12 committed Oct 16, 2024
1 parent cd57998 commit 95d232e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SudoRuleSections/SudoRulesWho.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const SudoRulesWho = (props: PropsToSudoRulesWho) => {
// Set alert: success
alerts.addAlert(
"add-who-user-external-success",
"Added new item(s)' to" + props.rule.cn + "'",
"Added new item(s) to '" + props.rule.cn + "'",
"success"
);
// Refresh page
Expand Down Expand Up @@ -224,7 +224,7 @@ const SudoRulesWho = (props: PropsToSudoRulesWho) => {
// Set alert: success
alerts.addAlert(
"add-who-group-external-success",
"Added new item(s)' to" + props.rule.cn + "'",
"Added new item(s) to '" + props.rule.cn + "'",
"success"
);
// Refresh page
Expand Down

0 comments on commit 95d232e

Please sign in to comment.