From 5ca7bc2beda6fe08f2afeecd62f5a5b506d7f101 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Dec 2020 09:08:09 +0100 Subject: [PATCH] [Glitch] Change "Profile unavailable" string to "Account suspended" in web UI Port 4fd306200396a17c030c53483ccd7faa6c2f7291 to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/features/account_gallery/index.js | 2 +- .../flavours/glitch/features/account_timeline/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/flavours/glitch/features/account_gallery/index.js b/app/javascript/flavours/glitch/features/account_gallery/index.js index fda8082cc..81203e3f8 100644 --- a/app/javascript/flavours/glitch/features/account_gallery/index.js +++ b/app/javascript/flavours/glitch/features/account_gallery/index.js @@ -168,7 +168,7 @@ class AccountGallery extends ImmutablePureComponent { {suspended ? (
- +
) : (
diff --git a/app/javascript/flavours/glitch/features/account_timeline/index.js b/app/javascript/flavours/glitch/features/account_timeline/index.js index c56cc9b8e..0d24980a9 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/index.js +++ b/app/javascript/flavours/glitch/features/account_timeline/index.js @@ -117,7 +117,7 @@ class AccountTimeline extends ImmutablePureComponent { let emptyMessage; if (suspended) { - emptyMessage = ; + emptyMessage = ; } else if (remote && statusIds.isEmpty()) { emptyMessage = ; } else {