Fix: change icons and show no items in history.

This commit is contained in:
arabcoders 2025-11-16 00:46:02 +03:00
parent 2274af0a2b
commit 46fb943243
3 changed files with 7 additions and 7 deletions

View file

@ -417,7 +417,7 @@
<span class="is-block">No results found for '<span class="is-underlined is-bold">{{ query }}</span>'.</span>
</Message>
<Message message_class="is-primary" title="No items" icon="fas fa-exclamation-triangle"
v-else-if="socket.isConnected && paginationInfo.total" :new-style="true">
v-else-if="socket.isConnected" :new-style="true">
<p>Your download history is empty. Once queued downloads are completed, they will appear here.</p>
</Message>
</div>

View file

@ -285,8 +285,8 @@
@close="() => emitter('clear_search')" v-if="query">
<span class="is-block">No results found for '<span class="is-underlined is-bold">{{ query }}</span>'.</span>
</Message>
<Message message_class="is-info" title="No items" icon="fas fa-clock" :useClose="false" :newStyle="true"
v-else>
<Message message_class="is-info" title="No items" icon="fas fa-exclamation-triangle" :useClose="false"
:newStyle="true" v-else>
<p>The download queue is empty.</p>
</Message>
</div>

View file

@ -69,14 +69,14 @@
<ul>
<li :class="{ 'is-active': activeTab === 'queue' }">
<a @click="setActiveTab('queue')">
<span class="icon is-small"><i class="fas fa-clock" aria-hidden="true"></i></span>
<span>Queue</span>
<span class="icon is-small"><i class="fas fa-download" /></span>
<span>Downloads</span>
<span class="tag is-info is-rounded is-bold ml-2">{{ queueCount }}</span>
</a>
</li>
<li :class="{ 'is-active': activeTab === 'history' }">
<a @click="setActiveTab('history')">
<span class="icon is-small"><i class="fas fa-history" aria-hidden="true"></i></span>
<span class="icon is-small"><i class="fas fa-history" /></span>
<span>History</span>
<span class="tag is-primary is-rounded is-bold ml-2">{{ historyCount }}</span>
</a>
@ -204,7 +204,7 @@ const pauseDownload = () => {
dialog_confirm.value.visible = true
dialog_confirm.value.html_message = `
<span class="icon-text">
<span class="icon"><i class="fa-solid fa-exclamation-triangle"></i></span>
<span class="icon"><i class="fa-solid fa-exclamation-triangle"/></span>
<span class="is-bold">Pause All non-active downloads?</span>
</span>
<br>