mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 03:22:11 +00:00
title attribute added to MetaItem
This commit is contained in:
parent
4c297a2f35
commit
b795d9f93f
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ const MetaItem = React.memo(({ className, menuClassName, id, type, posterShape =
|
||||||
const placeholderIcon = ICON_FOR_TYPE[type] || 'ic_movies';
|
const placeholderIcon = ICON_FOR_TYPE[type] || 'ic_movies';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Input className={classnames(className, styles['meta-item-container'], styles[`poster-shape-${posterShape}`])} type={'button'} data-meta-item-id={id} onClick={onClick} onContextMenu={onContextMenu}>
|
<Input className={classnames(className, styles['meta-item-container'], styles[`poster-shape-${posterShape}`])} title={title} type={'button'} data-meta-item-id={id} onClick={onClick} onContextMenu={onContextMenu}>
|
||||||
<div className={styles['poster-image-container']}>
|
<div className={styles['poster-image-container']}>
|
||||||
<div className={styles['placeholder-image-container']}>
|
<div className={styles['placeholder-image-container']}>
|
||||||
<Icon className={styles['placeholder-image']} icon={placeholderIcon} />
|
<Icon className={styles['placeholder-image']} icon={placeholderIcon} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue