diff --git a/ui/js/component/fileTileStream/view.jsx b/ui/js/component/fileTileStream/view.jsx index 9453f0cb0..cdb3739a5 100644 --- a/ui/js/component/fileTileStream/view.jsx +++ b/ui/js/component/fileTileStream/view.jsx @@ -83,81 +83,39 @@ class FileTileStream extends React.Component { } return ( -
-
- navigate('/show', { uri })} className="card__link"> -
-
{title}
-
- { !this.props.hidePrice ? : null} - -
+
+ navigate('/show', { uri })} className="card__link" className="card__link"> +
+
- { metadata && metadata.thumbnail ? -
: -
- } -
- +
+
+ { !this.props.hidePrice + ? + : null} +
{uri}
+

{title}

+
+
+ {isConfirmed ? metadata.description : This file is pending confirmation.} +
- - {this.state.showNsfwHelp && this.state.hovered - ?
-

- This content is Not Safe For Work. - To view adult content, please change your navigate('/settings')} label="Settings" />. -

-
- : null} -
+
+ + {this.state.showNsfwHelp + ?
+

+ This content is Not Safe For Work. + To view adult content, please change your navigate('/settings')} label="Settings" />. +

+
+ : null}
- //
- //
- //
- // navigate('/show', { uri })}> - // {metadata && metadata.thumbnail ? - // - // : - // - // } - // - //
- //
- //
- // { !this.props.hidePrice - // ? - // : null} - //
navigate('/show', { uri })}>{uri}
- //

- // navigate('/show', { uri })} title={title}> - // - // {title} - // - // - //

- //
- //
- //
- //
- //

- // {description} - //

- //
- //
- //
- // {this.state.showNsfwHelp - // ?
- //

- // This content is Not Safe For Work. - // To view adult content, please change your navigate('/settings')} label="Settings" />. - //

- //
- // : null} - //
); } }