Skip to content

Commit

Permalink
No lower case for Application when saving
Browse files Browse the repository at this point in the history
Signed-off-by: Gilles Dubreuil <gdubreui@redhat.com>
  • Loading branch information
gildub committed Jul 6, 2023
1 parent a8e6de5 commit 08cdcd7
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 08cdcd7

Please sign in to comment.