diff options
author | LASER-Yi <[email protected]> | 2022-03-20 12:16:21 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2022-03-20 12:16:21 +0800 |
commit | b4c82c269ee637e566a3369fd10afe26bc5877ff (patch) | |
tree | a08cd9e8c33ecadf7f140483ada61a07ca0b3c73 | |
parent | 51e1fa1c35830d2224ea7589730a645d111a5b63 (diff) | |
download | bazarr-b4c82c269ee637e566a3369fd10afe26bc5877ff.tar.gz bazarr-b4c82c269ee637e566a3369fd10afe26bc5877ff.zip |
Fix history button for episode will open up wrong modal
-rw-r--r-- | frontend/src/pages/Episodes/table.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/pages/Episodes/table.tsx b/frontend/src/pages/Episodes/table.tsx index 6da19a7f2..c5e0263aa 100644 --- a/frontend/src/pages/Episodes/table.tsx +++ b/frontend/src/pages/Episodes/table.tsx @@ -173,7 +173,7 @@ const Table: FunctionComponent<Props> = ({ icon={faHistory} disabled={disabled} onClick={() => { - show("manual-search", row.original); + show("history", row.original); }} ></ActionButton> <ActionButton |