MediaModal: fix types for Audio
This commit is contained in:
parent
def1c58835
commit
965fd8e479
1 changed files with 5 additions and 5 deletions
|
@ -209,11 +209,11 @@ const MediaModal: React.FC<IMediaModal> = (props) => {
|
||||||
<Audio
|
<Audio
|
||||||
src={attachment.url}
|
src={attachment.url}
|
||||||
alt={attachment.description}
|
alt={attachment.description}
|
||||||
poster={attachment.preview_url !== attachment.url ? attachment.preview_url : (status.getIn(['account', 'avatar_static']))}
|
poster={attachment.preview_url !== attachment.url ? attachment.preview_url : (status.getIn(['account', 'avatar_static'])) as string | undefined}
|
||||||
backgroundColor={attachment.meta.getIn(['colors', 'background'])}
|
backgroundColor={attachment.meta.getIn(['colors', 'background']) as string | undefined}
|
||||||
foregroundColor={attachment.meta.getIn(['colors', 'foreground'])}
|
foregroundColor={attachment.meta.getIn(['colors', 'foreground']) as string | undefined}
|
||||||
accentColor={attachment.meta.getIn(['colors', 'accent'])}
|
accentColor={attachment.meta.getIn(['colors', 'accent']) as string | undefined}
|
||||||
duration={attachment.meta.getIn(['original', 'duration'], 0)}
|
duration={attachment.meta.getIn(['original', 'duration'], 0) as number | undefined}
|
||||||
key={attachment.url}
|
key={attachment.url}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue