hide entrances to unrelated dashboards in topn list (#428)

This commit is contained in:
Fine0830 2024-11-08 10:03:49 +08:00 committed by GitHub
parent 6e1a6cf19b
commit 64d4a2b59b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>