Adding zustand and react-query (Settings Page) #95

Merged
rishighan merged 33 commits from qbittorrent-settings-form into main 2023-11-07 17:56:29 +00:00
3 changed files with 20 additions and 1 deletions
Showing only changes of commit 093dcc448c - Show all commits

View File

@@ -126,6 +126,5 @@
"tslint": "^6.1.3",
"typescript": "^5.1.6",
"vite": "^4.4.9"
}
}

View File

@@ -23,6 +23,12 @@ export const Settings = (props: ISettingsProps): ReactElement => {
</div>
),
},
{
id: "qbt-connection",
content: (
<div key="qbt-connection">{/* <QbitTorrentSettingsForm /> */}</div>
),
},
{
id: "core-service",
content: <ServiceStatuses />,

View File

@@ -37,6 +37,20 @@
"displayName": "Additional Configuration"
}
]
},
{
"id": "qbittorrent",
"displayName": "qBitTorrent",
"children": [
{
"id": "qbt-connection",
"displayName": "Connection"
},
{
"id": "qbt-additional-configuration",
"displayName": "qbt-configuration"
}
]
}
]
},