diff options
author | morpheus65535 <[email protected]> | 2024-03-03 12:15:23 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-03-03 12:15:23 -0500 |
commit | 03afeb347075381bcb7fd6036295c9fa4a90d2dc (patch) | |
tree | 7c5d72c973d2c8e4ade57391a1c9ad5e94903a46 /frontend/src/pages/System | |
parent | 9ae684240b5bdd40a870d8122f0e380f8d03a187 (diff) | |
download | bazarr-03afeb347075381bcb7fd6036295c9fa4a90d2dc.tar.gz bazarr-03afeb347075381bcb7fd6036295c9fa4a90d2dc.zip |
Updated multiple Python modules (now in libs and custom_libs directories) and React libraries
Diffstat (limited to 'frontend/src/pages/System')
-rw-r--r-- | frontend/src/pages/System/Announcements/table.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Backups/table.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Logs/modal.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Logs/table.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Providers/table.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Releases/index.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Status/index.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Status/table.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/System/Tasks/table.tsx | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/frontend/src/pages/System/Announcements/table.tsx b/frontend/src/pages/System/Announcements/table.tsx index 97f8cbe3e..2d9037b20 100644 --- a/frontend/src/pages/System/Announcements/table.tsx +++ b/frontend/src/pages/System/Announcements/table.tsx @@ -62,7 +62,7 @@ const Table: FunctionComponent<Props> = ({ announcements }) => { }, }, ], - [] + [], ); return ( diff --git a/frontend/src/pages/System/Backups/table.tsx b/frontend/src/pages/System/Backups/table.tsx index 1a2801b85..d0570da40 100644 --- a/frontend/src/pages/System/Backups/table.tsx +++ b/frontend/src/pages/System/Backups/table.tsx @@ -100,7 +100,7 @@ const Table: FunctionComponent<Props> = ({ backups }) => { }, }, ], - [] + [], ); return <PageTable columns={columns} data={backups}></PageTable>; diff --git a/frontend/src/pages/System/Logs/modal.tsx b/frontend/src/pages/System/Logs/modal.tsx index 0ecceb742..297909757 100644 --- a/frontend/src/pages/System/Logs/modal.tsx +++ b/frontend/src/pages/System/Logs/modal.tsx @@ -14,7 +14,7 @@ const SystemLogModal: FunctionComponent<Props> = ({ stack }) => { {v} </Text> )), - [stack] + [stack], ); return <Code block>{result}</Code>; diff --git a/frontend/src/pages/System/Logs/table.tsx b/frontend/src/pages/System/Logs/table.tsx index c6419cd4c..5a36f0f2b 100644 --- a/frontend/src/pages/System/Logs/table.tsx +++ b/frontend/src/pages/System/Logs/table.tsx @@ -70,7 +70,7 @@ const Table: FunctionComponent<Props> = ({ logs }) => { }, }, ], - [] + [], ); return ( diff --git a/frontend/src/pages/System/Providers/table.tsx b/frontend/src/pages/System/Providers/table.tsx index 47991b3c5..961da65fb 100644 --- a/frontend/src/pages/System/Providers/table.tsx +++ b/frontend/src/pages/System/Providers/table.tsx @@ -22,7 +22,7 @@ const Table: FunctionComponent<Props> = (props) => { accessor: "retry", }, ], - [] + [], ); return <SimpleTable columns={columns} data={props.providers}></SimpleTable>; diff --git a/frontend/src/pages/System/Releases/index.tsx b/frontend/src/pages/System/Releases/index.tsx index 63e8d0314..f205da086 100644 --- a/frontend/src/pages/System/Releases/index.tsx +++ b/frontend/src/pages/System/Releases/index.tsx @@ -42,7 +42,7 @@ const ReleaseCard: FunctionComponent<ReleaseInfo> = ({ }) => { const infos = useMemo( () => body.map((v) => v.replace(/(\s\[.*?\])\(.*?\)/, "")), - [body] + [body], ); return ( <Card shadow="md" p="lg"> diff --git a/frontend/src/pages/System/Status/index.tsx b/frontend/src/pages/System/Status/index.tsx index 2fca8d26d..ebb5d03d8 100644 --- a/frontend/src/pages/System/Status/index.tsx +++ b/frontend/src/pages/System/Status/index.tsx @@ -86,7 +86,7 @@ const SystemStatusView: FunctionComponent = () => { if (startTime) { const duration = moment.duration( moment().utc().unix() - startTime, - "seconds" + "seconds", ), days = duration.days(), hours = duration.hours().toString().padStart(2, "0"), diff --git a/frontend/src/pages/System/Status/table.tsx b/frontend/src/pages/System/Status/table.tsx index c570fbabf..3b8a87e8a 100644 --- a/frontend/src/pages/System/Status/table.tsx +++ b/frontend/src/pages/System/Status/table.tsx @@ -28,7 +28,7 @@ const Table: FunctionComponent<Props> = ({ health }) => { }, }, ], - [] + [], ); return ( diff --git a/frontend/src/pages/System/Tasks/table.tsx b/frontend/src/pages/System/Tasks/table.tsx index ac87c7c54..38ea5b5e0 100644 --- a/frontend/src/pages/System/Tasks/table.tsx +++ b/frontend/src/pages/System/Tasks/table.tsx @@ -52,7 +52,7 @@ const Table: FunctionComponent<Props> = ({ tasks }) => { }, }, ], - [] + [], ); return ( |