mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-07 04:42:58 -05:00
[web] Rename indexList to indices
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
<section>
|
||||
<nav class="buttons is-centered mb-4 fd-is-square">
|
||||
<router-link
|
||||
v-for="id in index"
|
||||
:key="id"
|
||||
v-for="index in indices"
|
||||
:key="index"
|
||||
class="button is-small"
|
||||
:to="'#index_' + id"
|
||||
>{{ id }}</router-link
|
||||
:to="'#index_' + index"
|
||||
>{{ index }}</router-link
|
||||
>
|
||||
</nav>
|
||||
</section>
|
||||
@@ -15,7 +15,7 @@
|
||||
<script>
|
||||
export default {
|
||||
name: 'IndexButtonList',
|
||||
props: ['index']
|
||||
props: { indices: Array }
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user