1
0

fix: ATTR_ENUMERATED_COERCION in a few places

This commit is contained in:
kolaente
2021-10-17 18:52:05 +02:00
parent 1864359751
commit 571b019c00
8 changed files with 12 additions and 12 deletions

View File

@ -16,7 +16,7 @@
/>
</div>
<div class="control">
<x-button @click="setApiUrl" :disabled="apiUrl === ''">
<x-button @click="setApiUrl" :disabled="apiUrl === '' || null">
{{ $t('apiConfig.change') }}
</x-button>
</div>

View File

@ -6,14 +6,14 @@
v-if="totalPages > 1"
>
<router-link
:disabled="currentPage === 1 ? true : null"
:disabled="currentPage === 1 || null"
:to="getRouteForPagination(currentPage - 1)"
class="pagination-previous"
tag="button">
{{ $t('misc.previous') }}
</router-link>
<router-link
:disabled="currentPage === totalPages ? true : null"
:disabled="currentPage === totalPages || null"
:to="getRouteForPagination(currentPage + 1)"
class="pagination-next"
tag="button">

View File

@ -4,7 +4,7 @@
:icon="icon"
v-tooltip="tooltipText"
@click="changeSubscription"
:disabled="disabled"
:disabled="disabled || null"
v-if="isButton"
>
{{ buttonText }}