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

Commit

Permalink
fix: the real parameter was passed in error. (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinHsu authored Mar 25, 2022
1 parent b58f9e7 commit 0e9c126
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 0e9c126

Please sign in to comment.