File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
packages/frontend/src/components Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 2121- Fix: 管理画面でアーカイブ済のお知らせを表示した際にアクティブなお知らせが多い旨の警告が出る問題を修正
2222- Fix: ファイルタブのセンシティブメディアを開く際に確認ダイアログを出す設定が適用されない問題を修正
2323- Fix: 2月29日を誕生日に設定している場合、閏年以外は3月1日を誕生日として扱うように修正
24+ - Fix: ` Mk:C:container ` の ` borderWidth ` が正しく反映されない問題を修正
2425
2526### Server
2627- Enhance: OAuthのクライアント情報取得(Client Information Discovery)において、IndieWeb Living Standard 11 July 2024で定義されているJSONドキュメント形式に対応しました
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ const containerStyle = computed(() => {
106106 const isBordered = c .borderWidth ?? c .borderColor ?? c .borderStyle ;
107107
108108 const border = isBordered ? {
109- borderWidth: c .borderWidth ?? ' 1px ' ,
109+ borderWidth: ` ${ c .borderWidth ?? 1 }px ` ,
110110 borderColor: c .borderColor ?? ' var(--MI_THEME-divider)' ,
111111 borderStyle: c .borderStyle ?? ' solid' ,
112112 } : undefined ;
You can’t perform that action at this time.
0 commit comments