summaryrefslogtreecommitdiff
path: root/packages/client/src/widgets
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-06-30 10:13:27 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-06-30 10:13:27 +0900
commit9ac526b6b6d66ceaceda6ef0d3662fd8484510da (patch)
treea8e161fb5dda0747bd30d0197f5fc83e62df4fde /packages/client/src/widgets
parentfix client router catchall (diff)
downloadmisskey-9ac526b6b6d66ceaceda6ef0d3662fd8484510da.tar.gz
misskey-9ac526b6b6d66ceaceda6ef0d3662fd8484510da.tar.bz2
misskey-9ac526b6b6d66ceaceda6ef0d3662fd8484510da.zip
tweak client
Diffstat (limited to 'packages/client/src/widgets')
-rw-r--r--packages/client/src/widgets/instance-cloud.vue6
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/client/src/widgets/instance-cloud.vue b/packages/client/src/widgets/instance-cloud.vue
index aa76c37a00..cb66c5fa36 100644
--- a/packages/client/src/widgets/instance-cloud.vue
+++ b/packages/client/src/widgets/instance-cloud.vue
@@ -1,5 +1,5 @@
<template>
-<MkContainer :naked="widgetProps.transparent" :show-header="widgetProps.showHeader" class="mkw-instance-cloud">
+<MkContainer :naked="widgetProps.transparent" class="mkw-instance-cloud">
<div class="">
<MkTagCloud v-if="activeInstances">
<li v-for="instance in activeInstances">
@@ -28,10 +28,6 @@ const widgetPropsDef = {
type: 'boolean' as const,
default: false,
},
- showHeader: {
- type: 'boolean' as const,
- default: true,
- },
};
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;