fix hyperchat size when thumbanil is gif and fix totalAmount calculation

This commit is contained in:
Sean Yesmunt 2021-04-26 00:15:35 -04:00
parent 7531a2c21a
commit d4fa45b257
4 changed files with 5 additions and 2 deletions

View file

@ -1336,7 +1336,7 @@ export const icons = {
<svg <svg
{...props} {...props}
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
viewBox="2 0 24 24" viewBox="0 0 24 24"
width={props.size || '18'} width={props.size || '18'}
height={props.size || '18'} height={props.size || '18'}
fill="currentColor" fill="currentColor"

View file

@ -57,6 +57,7 @@ export default function LivestreamList() {
{livestreamMap && Object.keys(livestreamMap).length > 0 && ( {livestreamMap && Object.keys(livestreamMap).length > 0 && (
<ClaimTilesDiscover <ClaimTilesDiscover
hasNoSource hasNoSource
streamTypes={null}
channelIds={Object.keys(livestreamMap)} channelIds={Object.keys(livestreamMap)}
limitClaimsPerChannel={1} limitClaimsPerChannel={1}
renderProperties={(claim) => { renderProperties={(claim) => {

View file

@ -296,7 +296,7 @@ export default handleActions(
} }
superChatsByUri[uri].comments = sortedSuperChatComments; superChatsByUri[uri].comments = sortedSuperChatComments;
superChatsByUri[uri].totalAmount += 1; superChatsByUri[uri].totalAmount += comment.support_amount;
} else { } else {
superChatsByUri[uri] = { comments: [comment], totalAmount: comment.support_amount }; superChatsByUri[uri] = { comments: [comment], totalAmount: comment.support_amount };
} }

View file

@ -129,6 +129,7 @@ $discussion-header__height: 3rem;
margin-left: var(--spacing-s); margin-left: var(--spacing-s);
.channel-thumbnail { .channel-thumbnail {
@include handleChannelGif(2rem);
margin-top: var(--spacing-xxs); margin-top: var(--spacing-xxs);
flex-shrink: 0; flex-shrink: 0;
} }
@ -242,6 +243,7 @@ $discussion-header__height: 3rem;
.channel-thumbnail { .channel-thumbnail {
margin-right: var(--spacing-xs); margin-right: var(--spacing-xs);
@include handleChannelGif(2rem);
} }
&:first-of-type { &:first-of-type {