about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/index.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-07-22 15:52:06 +0200
committerGitHub <noreply@github.com>2022-07-22 15:52:06 +0200
commit9608e720a4e5f977c0e2db0de7b264574b0ddeac (patch)
tree0b83743498b8c8ffdfd24a4a2861e30d11413277 /app/javascript/mastodon/reducers/index.js
parent76ff45230630c32dd01fd45c89557e092a81b27f (diff)
Add ability to follow hashtags in web UI (#18862)
Diffstat (limited to 'app/javascript/mastodon/reducers/index.js')
-rw-r--r--app/javascript/mastodon/reducers/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/mastodon/reducers/index.js b/app/javascript/mastodon/reducers/index.js
index 0219d8a5e..d3d0303df 100644
--- a/app/javascript/mastodon/reducers/index.js
+++ b/app/javascript/mastodon/reducers/index.js
@@ -39,6 +39,7 @@ import markers from './markers';
 import picture_in_picture from './picture_in_picture';
 import accounts_map from './accounts_map';
 import history from './history';
+import tags from './tags';
 
 const reducers = {
   announcements,
@@ -81,6 +82,7 @@ const reducers = {
   markers,
   picture_in_picture,
   history,
+  tags,
 };
 
 export default combineReducers(reducers);