mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-04-29 12:10:57 +00:00
generic markdown modal and plugins wiring
This commit is contained in:
parent
8639069104
commit
59ed70d8c1
6 changed files with 138 additions and 0 deletions
|
|
@ -79,6 +79,22 @@
|
|||
<span class="icon material-symbols-outlined">settings</span> Config
|
||||
</button>
|
||||
</template>
|
||||
<template x-if="plugin.has_readme">
|
||||
<button type="button"
|
||||
class="button"
|
||||
title="README"
|
||||
@click="$store.pluginListStore.openPluginDoc(plugin, 'readme')">
|
||||
<span class="icon material-symbols-outlined">description</span> README
|
||||
</button>
|
||||
</template>
|
||||
<template x-if="plugin.has_license">
|
||||
<button type="button"
|
||||
class="button"
|
||||
title="LICENSE"
|
||||
@click="$store.pluginListStore.openPluginDoc(plugin, 'license')">
|
||||
<span class="icon material-symbols-outlined">gavel</span> License
|
||||
</button>
|
||||
</template>
|
||||
<button type="button"
|
||||
class="button"
|
||||
title="Info"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue