fix: `admin/update-meta` が保存できない (#12057)
* Fix: invalid param impressumUrl * Update CHANGELOG.md
This commit is contained in:
parent
145c5c8b2b
commit
53099cad5a
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Enhance: ストリーミングAPIのパフォーマンスを向上
|
- Enhance: ストリーミングAPIのパフォーマンスを向上
|
||||||
|
- Fix: コントロールパネルの設定項目が正しく保存できない問題を修正
|
||||||
|
|
||||||
## 2023.10.1
|
## 2023.10.1
|
||||||
### General
|
### General
|
||||||
|
|
|
@ -96,8 +96,8 @@ export const paramDef = {
|
||||||
tosUrl: { type: 'string', nullable: true },
|
tosUrl: { type: 'string', nullable: true },
|
||||||
repositoryUrl: { type: 'string' },
|
repositoryUrl: { type: 'string' },
|
||||||
feedbackUrl: { type: 'string' },
|
feedbackUrl: { type: 'string' },
|
||||||
impressumUrl: { type: 'string' },
|
impressumUrl: { type: 'string', nullable: true },
|
||||||
privacyPolicyUrl: { type: 'string' },
|
privacyPolicyUrl: { type: 'string', nullable: true },
|
||||||
useObjectStorage: { type: 'boolean' },
|
useObjectStorage: { type: 'boolean' },
|
||||||
objectStorageBaseUrl: { type: 'string', nullable: true },
|
objectStorageBaseUrl: { type: 'string', nullable: true },
|
||||||
objectStorageBucket: { type: 'string', nullable: true },
|
objectStorageBucket: { type: 'string', nullable: true },
|
||||||
|
|
Loading…
Reference in New Issue