Remove Save button when there are no plugins
This commit is contained in:
parent
ae2716af96
commit
5e358bebe6
|
@ -7,7 +7,7 @@
|
||||||
<li><router-link to="/users">Go to User Management</router-link></li>
|
<li><router-link to="/users">Go to User Management</router-link></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<form @submit="savePlugin">
|
<form @submit="savePlugin" v-if="plugins.length > 0">
|
||||||
<template v-for="plugin in plugins">
|
<template v-for="plugin in plugins">
|
||||||
<h2>{{ capitalize(plugin.name) }}</h2>
|
<h2>{{ capitalize(plugin.name) }}</h2>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue