diff options
author | morpheus65535 <[email protected]> | 2024-11-20 23:37:30 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-11-20 23:37:30 -0500 |
commit | 24096cb10f6aaf3b377bfb24ef255efcdccf89c4 (patch) | |
tree | f7c159dcb682f9d6ed8fc46312eaed33aae94d00 /frontend | |
parent | e298d157247951beea8578dcd632d80cd3a5d75c (diff) | |
download | bazarr-24096cb10f6aaf3b377bfb24ef255efcdccf89c4.tar.gz bazarr-24096cb10f6aaf3b377bfb24ef255efcdccf89c4.zip |
Refactored upgrade routine to bring logic out of db requests but into Python code. #2749v1.4.6-beta.20
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/src/pages/History/Movies/index.tsx | 2 | ||||
-rw-r--r-- | frontend/src/pages/History/Series/index.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/History/Movies/index.tsx b/frontend/src/pages/History/Movies/index.tsx index 92d1aa280..d8aa859d2 100644 --- a/frontend/src/pages/History/Movies/index.tsx +++ b/frontend/src/pages/History/Movies/index.tsx @@ -116,7 +116,7 @@ const MoviesHistoryView: FunctionComponent = () => { }, }, { - header: "Upgrade", + header: "Upgradable", accessorKey: "upgradable", cell: ({ row: { diff --git a/frontend/src/pages/History/Series/index.tsx b/frontend/src/pages/History/Series/index.tsx index a5d75516a..b2e162ecd 100644 --- a/frontend/src/pages/History/Series/index.tsx +++ b/frontend/src/pages/History/Series/index.tsx @@ -139,7 +139,7 @@ const SeriesHistoryView: FunctionComponent = () => { }, }, { - header: "Upgrade", + header: "Upgradable", accessorKey: "upgradable", cell: ({ row: { |