Added a tab to list download errors

Click on the error/warning sign to open it
This commit is contained in:
RemixDev
2020-06-16 17:27:16 +02:00
parent 26b3984a04
commit e21469307b
7 changed files with 90 additions and 13 deletions

View File

@@ -1190,6 +1190,21 @@
target="_blank">news channel</a> on Telegram.
</p>
<br />
<h1>Bug Reports</h1>
<p>
If you have questions or problems with the app, search for a solution in the
<a href="https://www.reddit.com/r/deemix" target="_blank">subreddit</a> first and then, if you don't find anything
you can make a post with your issue on the subreddit.
</p>
<p>
Before reporting a bug make sure you're running the latest version of the app and that the thing you want
to report is acatually a bug and not something that's wrong only on your end.<br />
Make sure the bug is reproducible on another machines and also <b>DO NOT</b> report a bug if it's been already reported.
</p>
<p>
<b>DO NOT</b> open issues for asking questions, there is a subreddit for that.
</p>
<br />
<h2>Donations</h2>
<h3>You want to contribute to this project? You can do that <b>in different ways!</b></h3>
<p>
@@ -1400,6 +1415,24 @@
</footer>
</div>
<div id="errors_tab" class="main_tabcontent">
<h1>Errors for {{ title }}</h1>
<table>
<tr>
<th>ID</th>
<th>Artist</th>
<th>Title</th>
<th>Error</th>
</tr>
<tr v-for="error in errors">
<td>{{ error.data.id }}</td>
<td>{{ error.data.artist }}</td>
<td>{{ error.data.title }}</td>
<td>{{ error.message }}</td>
</tr>
</table>
</div>
</div>
</section>
</div>