diff --git a/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should allow adding input parameters and display used fragment graph in modal #8.png b/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should allow adding input parameters and display used fragment graph in modal #8.png index a6635a9f139..1e5947fcfe1 100644 Binary files a/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should allow adding input parameters and display used fragment graph in modal #8.png and b/designer/client/cypress/e2e/__image_snapshots__/electron/Linux/Fragment should allow adding input parameters and display used fragment graph in modal #8.png differ diff --git a/designer/client/progressBar.js b/designer/client/progressBar.js index b82cdcc3cab..36c04b89f62 100644 --- a/designer/client/progressBar.js +++ b/designer/client/progressBar.js @@ -19,7 +19,7 @@ function getElapsed() { function getBar(percentage) { const { barLength, almostDone } = options; - const bar = padEnd(repeat("◼︎", Math.ceil(percentage * barLength)), barLength, "□"); + const bar = padEnd(repeat("◼", Math.ceil(percentage * barLength)), barLength, "_"); const barColor = percentage > almostDone ? chalk.green : percentage > (almostDone * 2) / 3 ? chalk.yellow : chalk.red; return barColor(bar); }