Fix application toggle

This commit is contained in:
George Drummond 2019-04-22 11:29:17 -04:00
parent a35a6320a9
commit b5795a30aa
No known key found for this signature in database
GPG Key ID: 296DD6077123BF17

View File

@ -61,13 +61,13 @@
</div> </div>
</div> </div>
<div class='col'> <div class='col'>
<span v-if="selectedSection === '{{ section_name }}'" class='icon-link toggle-link'> <span class='icon-link toggle-link' v-on:click="toggleSection('{{ section_name }}')">
<template v-if="props.isVisible"> <span v-if="selectedSection === '{{ section_name }}'">
{{ Icon('minus') }} {{ Icon('minus') }}
</template> </span>
<template v-else> <span v-else>
{{ Icon('plus') }} {{ Icon('plus') }}
</template> </span>
</span> </span>
</div> </div>
</header> </header>