mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
fix: error on dashboard plugin usage page
This commit is contained in:
parent
e43500abba
commit
c3e07c1607
2 changed files with 7 additions and 6 deletions
|
@ -46,9 +46,9 @@
|
|||
</div>
|
||||
|
||||
<!-- Message Command list -->
|
||||
<div v-if="data.messageCommands.length">
|
||||
<h3 id="commands" class="text-2xl">Message Commands</h3>
|
||||
<div v-for="command in data.messageCommands"
|
||||
<div v-if="data.messageCommands && data.messageCommands.length">
|
||||
<h3 id="commands" class="text-2xl">Message commands</h3>
|
||||
<div v-for="command in (data.messageCommands || [])"
|
||||
class="command mb-4"
|
||||
v-bind:ref="getCommandSlug(command)" v-bind:class="{target: targetCommandId === getCommandSlug(command)}">
|
||||
<h4 class="text-xl font-semibold mb-0">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue