Skip to content

Commit

Permalink
✨ [backport release-0.2] Notifications: No lower case for Application…
Browse files Browse the repository at this point in the history
… when saving… (#1114)

…#1095)

Resolves https://issues.redhat.com/browse/MTA-814
  • Loading branch information
gildub authored Jul 12, 2023
1 parent 895ea42 commit 581b07d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export const ApplicationsTableAnalyze: React.FC = () => {
pushNotification({
title: t("toastr.success.saveWhat", {
what: response.data.name,
type: t("terms.application").toLowerCase(),
type: t("terms.application"),
}),
variant: "success",
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const ApplicationsTable: React.FC = () => {
pushNotification({
title: t("toastr.success.saveWhat", {
what: response.data.name,
type: t("terms.application").toLowerCase(),
type: t("terms.application"),
}),
variant: "success",
});
Expand Down

0 comments on commit 581b07d

Please sign in to comment.