Skip to content

Commit

Permalink
fix: admin/update-meta が保存できない (#12057)
Browse files Browse the repository at this point in the history
* Fix: invalid param impressumUrl

* Update CHANGELOG.md
  • Loading branch information
kakkokari-gtyih authored Oct 18, 2023
1 parent 145c5c8 commit 53099ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

### Server
- Enhance: ストリーミングAPIのパフォーマンスを向上
- Fix: コントロールパネルの設定項目が正しく保存できない問題を修正

## 2023.10.1
### General
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit 53099ca

Please sign in to comment.