Skip to content

Commit

Permalink
refactor: 馃摝 added tooltip to scan server in media server settings
Browse files Browse the repository at this point in the history
  • Loading branch information
bleak183 committed Apr 26, 2024
1 parent 3d576a4 commit 2fdfab2
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,16 @@
<FormKit type="button" v-if="saved || !setup" prefix-icon="fas fa-list" data-theme="secondary" @click="scanLibraries">
{{ __("Scan Libraries") }}
</FormKit>

<!-- Scan Servers -->
<FormKit type="button" :disabled="true" v-if="!serverForm.server_type || !setup" prefix-icon="fas fa-server" data-theme="secondary" @click="scanServers">
{{ __("Scan Servers") }}
</FormKit>
<VTooltip>
<!-- Scan Servers -->
<FormKit type="button" :disabled="true" v-if="!serverForm.server_type || !setup" prefix-icon="fas fa-server" data-theme="secondary" @click="scanServers">
{{ __("Scan Servers") }}
</FormKit>

<template #popper>
<span>{{ __("Coming Soon") }}</span>
</template>
</VTooltip>
</div>
<div class="flex flex-grow justify-end sm:justify-end space-x-2 mt-2">
<!-- Verify Server -->
Expand Down

0 comments on commit 2fdfab2

Please sign in to comment.