mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:53:08 +02:00
enhance(client): 付箋ウィジェットの高さを設定可能に
This commit is contained in:
parent
e13202a452
commit
65b1524f92
2 changed files with 6 additions and 1 deletions
|
@ -21,6 +21,7 @@ You should also include the user name that made the change.
|
||||||
- 透明なWebP/AVIF映像はJPEGではなくWebPに変換するように
|
- 透明なWebP/AVIF映像はJPEGではなくWebPに変換するように
|
||||||
- アクティブユーザー数チャートの記録上限値を拡張
|
- アクティブユーザー数チャートの記録上限値を拡張
|
||||||
- Playのソースコード上限文字数を2倍に拡張
|
- Playのソースコード上限文字数を2倍に拡張
|
||||||
|
- 付箋ウィジェットの高さを設定可能に
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- プロフィールで設定した情報が削除できない問題を修正
|
- プロフィールで設定した情報が削除できない問題を修正
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<template #header>{{ i18n.ts._widgets.memo }}</template>
|
<template #header>{{ i18n.ts._widgets.memo }}</template>
|
||||||
|
|
||||||
<div :class="$style.root">
|
<div :class="$style.root">
|
||||||
<textarea v-model="text" :class="$style.textarea" :placeholder="i18n.ts.placeholder" @input="onChange"></textarea>
|
<textarea v-model="text" :style="`height: ${widgetProps.height}px;`" :class="$style.textarea" :placeholder="i18n.ts.placeholder" @input="onChange"></textarea>
|
||||||
<button :class="$style.save" :disabled="!changed" class="_buttonPrimary" @click="saveMemo">{{ i18n.ts.save }}</button>
|
<button :class="$style.save" :disabled="!changed" class="_buttonPrimary" @click="saveMemo">{{ i18n.ts.save }}</button>
|
||||||
</div>
|
</div>
|
||||||
</MkContainer>
|
</MkContainer>
|
||||||
|
@ -25,6 +25,10 @@ const widgetPropsDef = {
|
||||||
type: 'boolean' as const,
|
type: 'boolean' as const,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
|
height: {
|
||||||
|
type: 'number' as const,
|
||||||
|
default: 100,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
||||||
|
|
Loading…
Reference in a new issue