diff options
author | ThibG <thib@sitedethib.com> | 2020-01-23 21:32:00 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-01-24 15:27:15 +0100 |
commit | 4f51fe03c904f68f27fe97b78900bb1b1909b677 (patch) | |
tree | 26b28980104bf2669de32384e90bdeab397466e7 /app/javascript | |
parent | de76a8969ecb353bd31498c03d9441289b796b54 (diff) |
[Glitch] Add “account timeline” filter category
Port JS changes from 43daeccccb31a0145c48f41c4ba449f0a3967ef2 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/features/account_timeline/index.js | 1 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/selectors/index.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/account_timeline/index.js b/app/javascript/flavours/glitch/features/account_timeline/index.js index 2ef4ff602..f25c82a00 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/index.js +++ b/app/javascript/flavours/glitch/features/account_timeline/index.js @@ -112,6 +112,7 @@ class AccountTimeline extends ImmutablePureComponent { onLoadMore={this.handleLoadMore} emptyMessage={<FormattedMessage id='empty_column.account_timeline' defaultMessage='No toots here!' />} bindToDocument={!multiColumn} + timelineId='account' /> </Column> ); diff --git a/app/javascript/flavours/glitch/selectors/index.js b/app/javascript/flavours/glitch/selectors/index.js index 8ceb71d03..ab7dac66a 100644 --- a/app/javascript/flavours/glitch/selectors/index.js +++ b/app/javascript/flavours/glitch/selectors/index.js @@ -27,6 +27,7 @@ export const toServerSideType = columnType => { case 'notifications': case 'public': case 'thread': + case 'account': return columnType; default: if (columnType.indexOf('list:') > -1) { |