diff options
author | LASER-Yi <[email protected]> | 2021-08-23 11:40:19 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2021-08-23 11:40:19 +0800 |
commit | e940fbb16ddc9089c754a113989c1ac0ec466e4f (patch) | |
tree | 509fcaca0162574fd723ab352260c59ba4eea42d /frontend | |
parent | 1f3e499f3db42d15436be604934770ed21e62548 (diff) | |
download | bazarr-e940fbb16ddc9089c754a113989c1ac0ec466e4f.tar.gz bazarr-e940fbb16ddc9089c754a113989c1ac0ec466e4f.zip |
no log: Fix issuesv0.9.8-beta.7
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/src/DisplayItem/MovieDetail/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/DisplayItem/MovieDetail/index.tsx b/frontend/src/DisplayItem/MovieDetail/index.tsx index 9faff4fa3..86dd7b44f 100644 --- a/frontend/src/DisplayItem/MovieDetail/index.tsx +++ b/frontend/src/DisplayItem/MovieDetail/index.tsx @@ -170,7 +170,7 @@ const MovieDetailView: FunctionComponent<Props> = ({ match }) => { <ItemOverview item={item} details={[]}></ItemOverview> </Row> <Row> - <Table movie={item} profile={profile}></Table> + <Table movie={item} profile={profile} disabled={hasTask}></Table> </Row> <ItemEditorModal modalKey="edit" |