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