fix thumbnail gifs in comments
This commit is contained in:
parent
51c94d334a
commit
788fd153da
2 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ function ChannelThumbnail(props: Props) {
|
|||
}, [doResolveUri, shouldResolve, uri]);
|
||||
|
||||
if (channelThumbnail && channelThumbnail.endsWith('gif') && !allowGifs) {
|
||||
return <FreezeframeWrapper src={channelThumbnail} className="channel-thumbnail" />;
|
||||
return <FreezeframeWrapper src={channelThumbnail} className={classnames('channel-thumbnail', className)} />;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
@ -81,7 +81,7 @@ class ClaimLink extends React.Component<Props> {
|
|||
|
||||
return isChannel ? (
|
||||
<div className="card--inline">
|
||||
<ClaimPreview uri={uri} wrapperElement="div" />
|
||||
<ClaimPreview uri={uri} wrapperElement="div" hideActions />
|
||||
</div>
|
||||
) : (
|
||||
<div className={classnames('claim-link')}>
|
||||
|
|
Loading…
Add table
Reference in a new issue