Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Fix the problem of failure to create menu based on internal preset links #520

Merged
merged 1 commit into from
Mar 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/views/interface/components/MenuInternalLinkSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<a-list-item v-for="(item, index) in sheet.independents" :key="index">
<a-list-item-meta :description="item.fullPath" :title="item.title" />
<template slot="actions">
<a-button class="!p-0" type="link" @click="handleInsertPre(item.name, item.fullPath)">
<a-button class="!p-0" type="link" @click="handleInsertPre(item.title, item.fullPath)">
<a-icon type="plus-circle" />
</a-button>
</template>
Expand All @@ -59,7 +59,7 @@
<a-list-item v-for="(item, index) in sheet.customs.data" :key="index">
<a-list-item-meta :description="item.fullPath" :title="item.title" />
<template slot="actions">
<a-button class="!p-0" type="link" @click="handleInsertPre(item.name, item.fullPath)">
<a-button class="!p-0" type="link" @click="handleInsertPre(item.title, item.fullPath)">
<a-icon type="plus-circle" />
</a-button>
</template>
Expand Down