Miko fixes 0.52.2 a2 #7451

Merged
jessopb merged 3 commits from miko-fixes-0.52.2-a2 into master 2022-01-30 00:25:40 +01:00
4 changed files with 6 additions and 6 deletions
Showing only changes of commit 258c05b1a2 - Show all commits

View file

@ -1,12 +1,12 @@
import * as ACTIONS from 'constants/action_types'; import * as ACTIONS from 'constants/action_types';
import { Lbryio } from 'lbryinc'; import { Lbryio } from 'lbryinc';
import { selectClaimsByUri } from 'redux/selectors/claims'; import { selectClaimForUri } from 'redux/selectors/claims';
// eslint-disable-next-line import/prefer-default-export // eslint-disable-next-line import/prefer-default-export
export function doFetchCostInfoForUri(uri) { export function doFetchCostInfoForUri(uri) {
return (dispatch, getState) => { return (dispatch, getState) => {
const state = getState(); const state = getState();
const claim = selectClaimsByUri(state)[uri]; const claim = selectClaimForUri(state, uri);
if (!claim) return; if (!claim) return;

View file

@ -99,6 +99,7 @@ export default function SettingContent(props: Props) {
} }
setClientSetting(SETTINGS.HIDE_REPOSTS, !hideReposts); setClientSetting(SETTINGS.HIDE_REPOSTS, !hideReposts);
}} }}
checked={hideReposts}
/> />
</SettingsRow> </SettingsRow>
<SettingsRow title={__('Show mature content')} subtitle={__(HELP.SHOW_MATURE)}> <SettingsRow title={__('Show mature content')} subtitle={__(HELP.SHOW_MATURE)}>

View file

@ -39,7 +39,7 @@
border-bottom: none; border-bottom: none;
.header__navigation { .header__navigation {
padding: var(--spacing-xs); padding: var(--spacing-xs) 0;
} }
.header__navigationItem--logo { .header__navigationItem--logo {
@ -65,7 +65,7 @@
justify-content: space-between; justify-content: space-between;
flex: 1; flex: 1;
height: var(--header-height); height: var(--header-height);
padding: var(--spacing-s) var(--spacing-m); padding: var(--spacing-s) 0;
flex-wrap: nowrap; flex-wrap: nowrap;
} }
@ -156,8 +156,6 @@
} }
.header__navigationItem--profilePic { .header__navigationItem--profilePic {
margin-right: var(--spacing-s);
.channel-thumbnail { .channel-thumbnail {
height: var(--height-button); height: var(--height-button);
width: var(--height-button); width: var(--height-button);

View file

@ -83,6 +83,7 @@
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
min-height: calc(100vh - var(--header-height)); min-height: calc(100vh - var(--header-height));
padding: 0 var(--spacing-m);
@media (max-width: $breakpoint-small) { @media (max-width: $breakpoint-small) {
width: 100%; width: 100%;