Skip to content

Commit

Permalink
fix #334
Browse files Browse the repository at this point in the history
  • Loading branch information
godicked committed Jan 9, 2025
1 parent 728397c commit 3bbc9fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ async function updatePlugin() {
<Dropdown>
<template #button>
<div>
<span class="bb">{{ props.plugin.name }}</span>
<span class="bb">
{{ props.plugin.name }}
<i class="bi bi-three-dots-vertical"></i>
</span>
</div>
</template>
<template #popup>
Expand Down
5 changes: 0 additions & 5 deletions panoptic_front/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,6 @@ onMounted(() => {
<div class="flex-grow-1 plugin-preview" style="overflow-y: auto;">
<PluginForm v-if="showPluginForm" @cancel="showPluginForm = false" ref="pluginFormElem" />
<div v-else>
<div v-for="plugin in panoptic.data.plugins" class="ps-1">
<!-- <span v-if="plugin.sourceUrl" class="bi bi-globe" />
<span @click="delPlugin(plugin.path)" class="bi bi-x base-hover"></span>
<span>{{ plugin.name }}</span> -->
</div>
<div v-for="plugin in panoptic.data.plugins" style="display: inline-block;">
<PluginOptionsDropdown :plugin="plugin"></PluginOptionsDropdown>
</div>
Expand Down

0 comments on commit 3bbc9fd

Please sign in to comment.