mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-15 02:18:02 -05:00
Fix status localization not working when iteration count > 0
This commit is contained in:
@@ -61,7 +61,7 @@ const StatusIndicator = () => {
|
||||
if (statusMessage)
|
||||
if (isProcessing) {
|
||||
if (totalIterations > 1) {
|
||||
statusMessage += ` (${currentIteration}/${totalIterations})`;
|
||||
statusMessage = t(statusMessage as keyof typeof t) + ` (${currentIteration}/${totalIterations})`;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user