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 79301f1 commit 02c1443Copy full SHA for 02c1443
dashboard/src/components/extension/MarketPluginCard.vue
@@ -27,6 +27,10 @@ const normalizePlatformList = (platforms) => {
27
return platforms.filter((item) => typeof item === "string");
28
};
29
30
+const platformDisplayList = computed(() =>
31
+ normalizePlatformList(props.plugin?.support_platforms),
32
+);
33
+
34
const handleInstall = (plugin) => {
35
emit("install", plugin);
36
dashboard/src/components/shared/ExtensionCard.vue
@@ -108,8 +108,9 @@ const viewChangelog = () => {
108
109
<template>
110
<v-card
111
- class="mx-auto d-flex flex-column"
+ class="mx-auto d-flex flex-column h-100"
112
elevation="0"
113
+ height="100%"
114
:style="{
115
position: 'relative',
116
backgroundColor:
0 commit comments