From 57e9acfe2adfafdaa86d6836bf75b479966441a0 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Mon, 17 Feb 2020 17:47:00 -0600 Subject: shorten frozen & limited badges --- app/javascript/flavours/glitch/features/account/components/header.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch/features/account') diff --git a/app/javascript/flavours/glitch/features/account/components/header.js b/app/javascript/flavours/glitch/features/account/components/header.js index cd2618440..d762e1087 100644 --- a/app/javascript/flavours/glitch/features/account/components/header.js +++ b/app/javascript/flavours/glitch/features/account/components/header.js @@ -185,9 +185,9 @@ class Header extends ImmutablePureComponent { const displayNameHtml = { __html: account.get('display_name_html') }; const fields = account.get('fields'); - const badge_limited = account.get('limited') ? (
) : null; + const badge_limited = account.get('limited') ? (
) : null; const badge_locked = account.get('locked') ? (
) : null; - const badge_froze = account.get('froze') ? (
) : null; + const badge_froze = account.get('froze') ? (
) : null; const badge_bot = account.get('bot') ? (
) : null; const badge_ac = account.get('adult_content') ? (
) : null; const badge_gently = account.get('gently') ? (
) : null; -- cgit