diff --git a/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts b/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts
index 0773539a3..24ddb7fad 100644
--- a/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts
+++ b/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts
@@ -118,7 +118,7 @@ export class LibrarySettingsModalComponent implements OnInit, OnDestroy {
this.libraryForm.get('includeInDashboard')?.setValue(this.library.includeInDashboard);
this.libraryForm.get('includeInRecommended')?.setValue(this.library.includeInRecommended);
this.libraryForm.get('includeInSearch')?.setValue(this.library.includeInSearch);
- this.libraryForm.get('createCollections')?.setValue(this.library.createCollections);
+ this.libraryForm.get('manageCollections')?.setValue(this.library.manageCollections);
this.selectedFolders = this.library.folders;
this.madeChanges = false;
this.cdRef.markForCheck();
diff --git a/openapi.json b/openapi.json
index 572f52d8d..06aec3b21 100644
--- a/openapi.json
+++ b/openapi.json
@@ -7,7 +7,7 @@
"name": "GPL-3.0",
"url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"
},
- "version": "0.6.1.41"
+ "version": "0.7.0.2"
},
"servers": [
{
@@ -14070,13 +14070,13 @@
},
"UpdateLibraryDto": {
"required": [
- "createCollections",
"folders",
"folderWatching",
"id",
"includeInDashboard",
"includeInRecommended",
"includeInSearch",
+ "manageCollections",
"name",
"type"
],
@@ -14111,7 +14111,7 @@
"includeInSearch": {
"type": "boolean"
},
- "createCollections": {
+ "manageCollections": {
"type": "boolean"
}
},