fix
This commit is contained in:
parent
dd19b9d4a0
commit
3a195d2077
1 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
<div class="content-inner">
|
<div class="content-inner">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col" style="padding:0;">
|
<div class="col" style="padding:0;">
|
||||||
<h1 class="header-text">{{app.getLz('term.artists')}}</h1>
|
<h1 class="header-text">{{$root.getLz('term.artists')}}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
<input type="search"
|
<input type="search"
|
||||||
style="width:100%;"
|
style="width:100%;"
|
||||||
spellcheck="false"
|
spellcheck="false"
|
||||||
:placeholder="app.getLz('term.search') + '...'"
|
:placeholder="$root.getLz('term.search') + '...'"
|
||||||
@input="searchLibraryArtists"
|
@input="searchLibraryArtists"
|
||||||
v-model="library.artists.search" class="search-input">
|
v-model="library.artists.search" class="search-input">
|
||||||
</div>
|
</div>
|
||||||
|
@ -28,9 +28,9 @@
|
||||||
</div> -->
|
</div> -->
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<select class="md-select" v-model="library.artists.sortOrder[1]" @change="searchLibraryArtists(1)">
|
<select class="md-select" v-model="library.artists.sortOrder[1]" @change="searchLibraryArtists(1)">
|
||||||
<optgroup :label="app.getLz('term.sortOrder')">
|
<optgroup :label="$root.getLz('term.sortOrder')">
|
||||||
<option value="asc">{{app.getLz('term.sortOrder.ascending')}}</option>
|
<option value="asc">{{$root.getLz('term.sortOrder.ascending')}}</option>
|
||||||
<option value="desc">{{app.getLz('term.sortOrder.descending')}}</option>
|
<option value="desc">{{$root.getLz('term.sortOrder.descending')}}</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue