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 b387bc1 commit 4632795Copy full SHA for 4632795
ui/public/config.json
@@ -63,6 +63,7 @@
63
"sc": "label.simplified.chinese.keyboard"
64
},
65
"userCard": {
66
+ "enabled": true,
67
"title": "label.help",
68
"icon": "question-circle-outlined",
69
"links": [
ui/src/views/dashboard/UsageDashboard.vue
@@ -287,7 +287,14 @@
287
</div>
288
</chart-card>
289
</a-col>
290
- <a-col :xs="{ span: 24 }" :lg="{ span: 12 }" :xl="{ span: 8 }" :xxl="{ span: 8 }" class="dashboard-card">
+ <a-col
291
+ v-if="$config.userCard.enabled ?? true"
292
+ :xs="{ span: 24 }"
293
+ :lg="{ span: 12 }"
294
+ :xl="{ span: 8 }"
295
+ :xxl="{ span: 8 }"
296
+ class="dashboard-card"
297
+ >
298
<chart-card :loading="loading" class="dashboard-card">
299
<template #title>
300
<div class="center">
0 commit comments