From 7656687d435974154d9bdee758558b9afacb6ade Mon Sep 17 00:00:00 2001 From: KMY Date: Mon, 11 Sep 2023 11:45:12 +0900 Subject: [PATCH] Add antenna budge to lists --- app/javascript/mastodon/features/lists/index.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/lists/index.jsx b/app/javascript/mastodon/features/lists/index.jsx index e947a40b83..fb52973d23 100644 --- a/app/javascript/mastodon/features/lists/index.jsx +++ b/app/javascript/mastodon/features/lists/index.jsx @@ -22,6 +22,7 @@ import NewListForm from './components/new_list_form'; const messages = defineMessages({ heading: { id: 'column.lists', defaultMessage: 'Lists' }, subheading: { id: 'lists.subheading', defaultMessage: 'Your lists' }, + with_antenna: { id: 'lists.with_antenna', defaultMessage: 'Antenna' }, }); const getOrderedLists = createSelector([state => state.get('lists')], lists => { @@ -76,7 +77,8 @@ class Lists extends ImmutablePureComponent { bindToDocument={!multiColumn} > {lists.map(list => - , + ( 0) ? intl.formatMessage(messages.with_antenna) : undefined} />), )}