We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc614d commit 2105794Copy full SHA for 2105794
ui/public/config.json
@@ -64,6 +64,7 @@
64
"sc": "label.simplified.chinese.keyboard"
65
},
66
"userCard": {
67
+ "enabled": true,
68
"title": "label.help",
69
"icon": "question-circle-outlined",
70
"links": [
ui/src/views/dashboard/UsageDashboard.vue
@@ -299,7 +299,14 @@
299
</div>
300
</chart-card>
301
</a-col>
302
- <a-col :xs="{ span: 24 }" :lg="{ span: 12 }" :xl="{ span: 8 }" :xxl="{ span: 8 }" class="dashboard-card">
+ <a-col
303
+ v-if="$config.userCard.enabled ?? true"
304
+ :xs="{ span: 24 }"
305
+ :lg="{ span: 12 }"
306
+ :xl="{ span: 8 }"
307
+ :xxl="{ span: 8 }"
308
+ class="dashboard-card"
309
+ >
310
<chart-card :loading="loading" class="dashboard-card">
311
<template #title>
312
<div class="center">
0 commit comments