mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-05-18 01:15:31 +02:00
Add: collection and playlist help text to modal
This commit is contained in:
parent
8974c582fc
commit
5c0cd98cb3
@ -19,8 +19,19 @@
|
|||||||
</template>
|
</template>
|
||||||
</transition-group>
|
</transition-group>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!collections.length" class="flex h-32 items-center justify-center">
|
<div v-if="!collections.length" class="flex h-32 items-center justify-center text-center">
|
||||||
<p class="text-xl">{{ $strings.MessageNoCollections }}</p>
|
<div>
|
||||||
|
<p class="text-xl">{{ $strings.MessageNoUserPlaylists }}</p>
|
||||||
|
<p class="text-sm flex items-center justify-center">
|
||||||
|
{{ $strings.MessageBookshelfNoCollectionsHelp }}
|
||||||
|
<ui-tooltip :text="$strings.LabelClickForMoreInfo" class="inline-flex ml-2">
|
||||||
|
<a href="https://www.audiobookshelf.org/guides/collections" target="_blank" class="inline-flex">
|
||||||
|
<span class="material-symbols text-xl w-5 text-gray-200">help_outline</span>
|
||||||
|
</a>
|
||||||
|
</ui-tooltip>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full h-px bg-white bg-opacity-10" />
|
<div class="w-full h-px bg-white bg-opacity-10" />
|
||||||
<form @submit.prevent="submitCreateCollection">
|
<form @submit.prevent="submitCreateCollection">
|
||||||
|
@ -19,8 +19,18 @@
|
|||||||
</template>
|
</template>
|
||||||
</transition-group>
|
</transition-group>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!playlists.length" class="flex h-32 items-center justify-center">
|
<div v-if="!playlists.length" class="flex h-32 items-center justify-center text-center">
|
||||||
<p class="text-xl">{{ $strings.MessageNoUserPlaylists }}</p>
|
<div>
|
||||||
|
<p class="text-xl">{{ $strings.MessageNoUserPlaylists }}</p>
|
||||||
|
<p class="text-sm flex items-center justify-center">
|
||||||
|
{{ $strings.MessageNoUserPlaylistsHelp }}
|
||||||
|
<ui-tooltip :text="$strings.LabelClickForMoreInfo" class="inline-flex ml-2">
|
||||||
|
<a href="https://www.audiobookshelf.org/guides/collections" target="_blank" class="inline-flex">
|
||||||
|
<span class="material-symbols text-xl w-5 text-gray-200">help_outline</span>
|
||||||
|
</a>
|
||||||
|
</ui-tooltip>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full h-px bg-white bg-opacity-10" />
|
<div class="w-full h-px bg-white bg-opacity-10" />
|
||||||
<form @submit.prevent="submitCreatePlaylist">
|
<form @submit.prevent="submitCreatePlaylist">
|
||||||
|
Loading…
Reference in New Issue
Block a user