diff --git a/jsdoc.json b/jsdoc.json index 0d0dcc6..2d59fd5 100644 --- a/jsdoc.json +++ b/jsdoc.json @@ -12,7 +12,7 @@ "plugins/markdown" ], "opts": { - "template": "node_modules/docdash", + "template": "node_modules/tui-jsdoc-template", "encoding": "utf8", "destination": "docs/", "recurse": true, diff --git a/package.json b/package.json index 0721543..95ab8d4 100644 --- a/package.json +++ b/package.json @@ -118,6 +118,7 @@ "sass": "^1.66.1", "storybook": "^7.3.2", "tslint": "^6.1.3", + "tui-jsdoc-template": "^1.2.2", "typescript": "^5.1.6" }, "resolutions": { diff --git a/src/client/components/Settings/QbittorrentSettings/QbittorrentConnectionForm.tsx b/src/client/components/Settings/QbittorrentSettings/QbittorrentConnectionForm.tsx index 6b46d0b..a3364d1 100644 --- a/src/client/components/Settings/QbittorrentSettings/QbittorrentConnectionForm.tsx +++ b/src/client/components/Settings/QbittorrentSettings/QbittorrentConnectionForm.tsx @@ -1,4 +1,5 @@ import React, { ReactElement, useCallback, useEffect } from "react"; +import { Form, Field } from "react-final-form"; import { useDispatch, useSelector } from "react-redux"; import { getQBitTorrentClientInfo } from "../../../actions/settings.actions"; @@ -9,12 +10,23 @@ export const QbittorrentConnectionForm = (): ReactElement => { useEffect(() => { dispatch(getQBitTorrentClientInfo()); }, []) - - return ( -
{JSON.stringify(torrents, null, 4)}
-