Moved radio message at the bottom of the queue

This commit is contained in:
Eliot Berriot 2020-03-26 09:44:31 +01:00
parent 02d2e4e1c0
commit a8606a6895
No known key found for this signature in database
GPG Key ID: 6B501DFD73514E14
1 changed files with 10 additions and 9 deletions

View File

@ -147,15 +147,6 @@
</div>
</div>
</h2>
<div v-if="$store.state.radios.running" class="ui info message">
<div class="content">
<div class="header">
<i class="feed icon"></i> <translate translate-context="Sidebar/Player/Title">You have a radio playing</translate>
</div>
<p><translate translate-context="Sidebar/Player/Paragraph">New tracks will be appended here automatically.</translate></p>
<div @click="$store.dispatch('radios/stop')" class="ui basic primary button"><translate translate-context="*/Player/Button.Label/Short, Verb">Stop radio</translate></div>
</div>
</div>
</div>
<table class="ui compact very basic fixed single line selectable unstackable table">
<draggable v-model="tracks" tag="tbody" @update="reorder" handle=".handle">
@ -194,6 +185,16 @@
</tr>
</draggable>
</table>
<div v-if="$store.state.radios.running" class="ui info message">
<div class="content">
<div class="header">
<i class="feed icon"></i> <translate translate-context="Sidebar/Player/Title">You have a radio playing</translate>
</div>
<p><translate translate-context="Sidebar/Player/Paragraph">New tracks will be appended here automatically.</translate></p>
<div @click="$store.dispatch('radios/stop')" class="ui basic primary button"><translate translate-context="*/Player/Button.Label/Short, Verb">Stop radio</translate></div>
</div>
</div>
</div>
</div>
</div>