Fix mascot being too large, and a code style issue (#13002)
This commit is contained in:
parent
60e160a02d
commit
bba0269d97
2 changed files with 2 additions and 3 deletions
|
@ -42,8 +42,7 @@ export default function statuses(state = initialState, action) {
|
|||
case FAVOURITE_REQUEST:
|
||||
return state.setIn([action.status.get('id'), 'favourited'], true);
|
||||
case UNFAVOURITE_SUCCESS:
|
||||
const favouritesCount = action.status.get('favourites_count');
|
||||
return state.setIn([action.status.get('id'), 'favourites_count'], favouritesCount - 1);
|
||||
return state.updateIn([action.status.get('id'), 'favourites_count'], x => Math.max(0, x - 1));
|
||||
case FAVOURITE_FAIL:
|
||||
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'favourited'], false);
|
||||
case BOOKMARK_REQUEST:
|
||||
|
|
|
@ -2522,7 +2522,7 @@ a.account__display-name {
|
|||
display: block;
|
||||
object-fit: contain;
|
||||
object-position: bottom left;
|
||||
width: 100%;
|
||||
width: 85%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
user-drag: none;
|
||||
|
|
Loading…
Reference in a new issue