kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Merge branch '103-radio-button' into 'develop'
Resolve "Start/stop radio buttons all enabled for user radios" Closes #103 See merge request funkwhale/funkwhale!95merge-requests/154/head
commit
65d876d95b
|
@ -0,0 +1 @@
|
|||
Fixed synchronized start/stop radio buttons for all custom radios (#103)
|
|
@ -1,6 +1,7 @@
|
|||
<template>
|
||||
<div class="ui pagination borderless menu">
|
||||
<a
|
||||
v-if="current - 1 >= 1"
|
||||
@click="selectPage(current - 1)"
|
||||
:class="[{'disabled': current - 1 < 1}, 'item']"><i class="angle left icon"></i></a>
|
||||
<template>
|
||||
|
@ -16,6 +17,7 @@
|
|||
</a>
|
||||
</template>
|
||||
<a
|
||||
v-if="current + 1 <= maxPage"
|
||||
@click="selectPage(current + 1)"
|
||||
:class="[{'disabled': current + 1 > maxPage}, 'item']"><i class="angle right icon"></i></a>
|
||||
</div>
|
||||
|
|
|
@ -31,7 +31,7 @@ export default {
|
|||
if (!state.running) {
|
||||
return false
|
||||
} else {
|
||||
return current.type === this.type & current.objectId === this.objectId
|
||||
return current.type === this.type && current.objectId === this.objectId && current.customRadioId === this.customRadioId
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue