WIP: source error for all types

This commit is contained in:
Lachlan Kermode
2018-12-21 16:58:40 +00:00
parent 670ec6dbb2
commit 16d9207aa0
4 changed files with 43 additions and 40 deletions

View File

@@ -7,14 +7,14 @@ const NoSource = ({ failedUrls }) => {
<i className="material-icons no-source-icon">
error
</i>
<div>No media found.</div>
<div>No media found, as the original media has not yet been uploaded to the platform.</div>
</div>
<div className="no-source-row">
The following URLs were tried:
</div>
<ul>
{failedUrls.map((url, idx) => <li key={idx}>{url}</li>)}
</ul>
{/* <div className="no-source-row"> */}
{/* The following URLs were tried: */}
{/* </div> */}
{/* <ul> */}
{/* {failedUrls.map((url, idx) => <li key={idx}>{url}</li>)} */}
{/* </ul> */}
</div>
)
}