mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Library updates
This commit is contained in:
@@ -49,7 +49,7 @@ export const SettingsTasksPanel: React.FC = () => {
|
||||
if (newProgress < 0) {
|
||||
setProgress(0);
|
||||
} else {
|
||||
setProgress(newProgress);
|
||||
setProgress(newProgress * 100);
|
||||
}
|
||||
}
|
||||
}, [jobStatus]);
|
||||
@@ -61,7 +61,7 @@ export const SettingsTasksPanel: React.FC = () => {
|
||||
if (newProgress < 0) {
|
||||
setProgress(0);
|
||||
} else {
|
||||
setProgress(newProgress);
|
||||
setProgress(newProgress * 100);
|
||||
}
|
||||
}
|
||||
}, [metadataUpdate]);
|
||||
|
||||
Reference in New Issue
Block a user