Skip to content

Commit

Permalink
hide entrances to unrelated dashboards in topn list (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fine0830 authored Nov 8, 2024
1 parent 6e1a6cf commit 64d4a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/dashboard/graphs/TopList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ limitations under the License. -->
<div class="operation" @click="viewTrace(i)" v-show="![RefIdTypes[0].value].includes(refIdType)">
<span>{{ t("viewTrace") }}</span>
</div>
<div class="operation" @click="viewDashboard(i)">
<div class="operation" @click="viewDashboard(i)" v-show="props.config.valueRelatedDashboard">
<span>{{ t("viewValueDashboard") }}</span>
</div>
</el-popover>
Expand Down

0 comments on commit 64d4a2b

Please sign in to comment.