mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Fix the edit form display logic issue
This commit is contained in:
parent
bb9e2082ea
commit
b461955115
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div id="editSongsOverlay" v-if="shown" class="overlay">
|
||||
<div id="editSongsOverlay" v-show="shown" class="overlay">
|
||||
<sound-bar v-if="loading"></sound-bar>
|
||||
<form v-else @submit.prevent="submit">
|
||||
<header>
|
||||
|
@ -98,7 +98,7 @@ export default {
|
|||
shown: false,
|
||||
songs: [],
|
||||
currentView: '',
|
||||
loading: false,
|
||||
loading: true,
|
||||
|
||||
artistState: artistStore.state,
|
||||
artistTypeaheadOptions: {
|
||||
|
|
Loading…
Reference in a new issue