From 11a6c70d9b76f595933d399f5688d7e85c805c66 Mon Sep 17 00:00:00 2001 From: Fedor Kulikov Date: Tue, 25 May 2021 12:40:59 +0500 Subject: [PATCH] feat: new placeholder for missing values (i.e. NO_VALUE_FALLBACK) (#2228) --- .changeset/curvy-ears-move.md | 5 +++++ packages/constants/src/constants.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/curvy-ears-move.md diff --git a/.changeset/curvy-ears-move.md b/.changeset/curvy-ears-move.md new file mode 100644 index 0000000000..e76acebb45 --- /dev/null +++ b/.changeset/curvy-ears-move.md @@ -0,0 +1,5 @@ +--- +'@commercetools-frontend/constants': minor +--- + +Change missing value placholder (i.e. `NO_VALUE_FALLBACK`) from `- - - -` to `- -` diff --git a/packages/constants/src/constants.ts b/packages/constants/src/constants.ts index a047b891f4..fe8c9d6270 100644 --- a/packages/constants/src/constants.ts +++ b/packages/constants/src/constants.ts @@ -97,7 +97,7 @@ export type TAppNotificationSide = TAppNotification<{ }>; // Fallback string when there is no localized value -export const NO_VALUE_FALLBACK = '- - - -'; +export const NO_VALUE_FALLBACK = '- -'; // HTTP requests and responses export const STATUS_CODES = {