diff options
author | morpheus65535 <[email protected]> | 2024-12-24 09:13:41 -0500 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2024-12-24 09:13:41 -0500 |
commit | b59b5a6fd7e555326d53b272f98aeaef1252b38d (patch) | |
tree | 0da793513ab5ec8eb8db2c797fc5c3f176ac8f07 /frontend | |
parent | 320935548c28e85bbd9b0b0a6a073f1439deba31 (diff) | |
download | bazarr-b59b5a6fd7e555326d53b272f98aeaef1252b38d.tar.gz bazarr-b59b5a6fd7e555326d53b272f98aeaef1252b38d.zip |
no log: minor UI fixes
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/src/pages/Episodes/index.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/pages/Episodes/index.tsx b/frontend/src/pages/Episodes/index.tsx index 2a518ae4c..017a8a15e 100644 --- a/frontend/src/pages/Episodes/index.tsx +++ b/frontend/src/pages/Episodes/index.tsx @@ -167,6 +167,7 @@ const SeriesEpisodesView: FunctionComponent = () => { series.profileId === null || !available } + loading={hasTask} > Search </Toolbox.Button> @@ -195,7 +196,8 @@ const SeriesEpisodesView: FunctionComponent = () => { series === undefined || series.episodeFileCount === 0 || series.profileId === null || - !available + !available || + hasTask } icon={faCloudUploadAlt} onClick={() => openDropzone.current?.()} |