Browse Source

Fix pinning the bookmarks column (fixes #428)

closed-social-glitch-2
Thibaut Girka 6 years ago
parent
commit
54f5170f59
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      app/javascript/flavours/glitch/features/ui/components/columns_area.js

+ 2
- 1
app/javascript/flavours/glitch/features/ui/components/columns_area.js View File

@ -11,7 +11,7 @@ import BundleContainer from '../containers/bundle_container';
import ColumnLoading from './column_loading';
import DrawerLoading from './drawer_loading';
import BundleColumnError from './bundle_column_error';
import { Drawer, Notifications, HomeTimeline, CommunityTimeline, PublicTimeline, HashtagTimeline, DirectTimeline, FavouritedStatuses, ListTimeline } from 'flavours/glitch/util/async-components';
import { Drawer, Notifications, HomeTimeline, CommunityTimeline, PublicTimeline, HashtagTimeline, DirectTimeline, FavouritedStatuses, BookmarkedStatuses, ListTimeline } from 'flavours/glitch/util/async-components';
import detectPassiveEvents from 'detect-passive-events';
import { scrollRight } from 'flavours/glitch/util/scroll';
@ -25,6 +25,7 @@ const componentMap = {
'HASHTAG': HashtagTimeline,
'DIRECT': DirectTimeline,
'FAVOURITES': FavouritedStatuses,
'BOOKMARKED': BookmarkedStatuses,
'LIST': ListTimeline,
};

Loading…
Cancel
Save