diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef13da57..f6e64bd09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ You should also include the user name that made the change. - 透明なWebP/AVIF映像はJPEGではなくWebPに変換するように - アクティブユーザー数チャートの記録上限値を拡張 - Playのソースコード上限文字数を2倍に拡張 +- 付箋ウィジェットの高さを設定可能に ### Bugfixes - プロフィールで設定した情報が削除できない問題を修正 diff --git a/packages/frontend/src/widgets/WidgetMemo.vue b/packages/frontend/src/widgets/WidgetMemo.vue index 76fc29716..959cf776a 100644 --- a/packages/frontend/src/widgets/WidgetMemo.vue +++ b/packages/frontend/src/widgets/WidgetMemo.vue @@ -4,7 +4,7 @@
- +
@@ -25,6 +25,10 @@ const widgetPropsDef = { type: 'boolean' as const, default: true, }, + height: { + type: 'number' as const, + default: 100, + }, }; type WidgetProps = GetFormResultType;