diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-05-03 04:02:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 04:02:55 +0200 |
commit | 967e419f8fa87af74f4bb530d7493c1dde02fca8 (patch) | |
tree | 69a349756dc78d12975b1452785cc06110296c87 /app | |
parent | 3f143606faa6181ff2745b6bd29ac8ea075088bf (diff) |
Fix alignment of items in the account gallery in web UI and load more per page (#10674)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/actions/timelines.js | 2 | ||||
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/app/javascript/mastodon/actions/timelines.js b/app/javascript/mastodon/actions/timelines.js index d92385e95..06c21b96b 100644 --- a/app/javascript/mastodon/actions/timelines.js +++ b/app/javascript/mastodon/actions/timelines.js @@ -96,7 +96,7 @@ export const expandPublicTimeline = ({ maxId, onlyMedia } = {}, done = export const expandCommunityTimeline = ({ maxId, onlyMedia } = {}, done = noOp) => expandTimeline(`community${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: true, max_id: maxId, only_media: !!onlyMedia }, done); export const expandAccountTimeline = (accountId, { maxId, withReplies } = {}) => expandTimeline(`account:${accountId}${withReplies ? ':with_replies' : ''}`, `/api/v1/accounts/${accountId}/statuses`, { exclude_replies: !withReplies, max_id: maxId }); export const expandAccountFeaturedTimeline = accountId => expandTimeline(`account:${accountId}:pinned`, `/api/v1/accounts/${accountId}/statuses`, { pinned: true }); -export const expandAccountMediaTimeline = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true }); +export const expandAccountMediaTimeline = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true, limit: 40 }); export const expandListTimeline = (id, { maxId } = {}, done = noOp) => expandTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`, { max_id: maxId }, done); export const expandHashtagTimeline = (hashtag, { maxId, tags } = {}, done = noOp) => { return expandTimeline(`hashtag:${hashtag}`, `/api/v1/timelines/tag/${hashtag}`, { diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 0e942d234..ebf46074b 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -4764,7 +4764,6 @@ a.status-card.compact:hover { .account-gallery__container { display: flex; flex-wrap: wrap; - justify-content: center; padding: 4px 2px; } |