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

View File

@@ -35,7 +35,7 @@ limitations under the License. -->
<div class="operation" @click="viewTrace(i)" v-show="![RefIdTypes[0].value].includes(refIdType)"> <div class="operation" @click="viewTrace(i)" v-show="![RefIdTypes[0].value].includes(refIdType)">
<span>{{ t("viewTrace") }}</span> <span>{{ t("viewTrace") }}</span>
</div> </div>
<div class="operation" @click="viewDashboard(i)"> <div class="operation" @click="viewDashboard(i)" v-show="props.config.valueRelatedDashboard">
<span>{{ t("viewValueDashboard") }}</span> <span>{{ t("viewValueDashboard") }}</span>
</div> </div>
</el-popover> </el-popover>