mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Fix status localization not working when iteration count > 0
This commit is contained in:
parent
edc22e06c3
commit
686640af3a
@ -61,7 +61,7 @@ const StatusIndicator = () => {
|
|||||||
if (statusMessage)
|
if (statusMessage)
|
||||||
if (isProcessing) {
|
if (isProcessing) {
|
||||||
if (totalIterations > 1) {
|
if (totalIterations > 1) {
|
||||||
statusMessage += ` (${currentIteration}/${totalIterations})`;
|
statusMessage = t(statusMessage as keyof typeof t) + ` (${currentIteration}/${totalIterations})`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user