Skip to content

Commit

Permalink
fix(ui): Updated text in refresh dialog (argoproj#13583)
Browse files Browse the repository at this point in the history
Signed-off-by: Hassan Tanveer <hassan.tanveer0097@gmail.com>
  • Loading branch information
HassanTanveer authored and xiaowu.zhu committed Aug 9, 2023
1 parent 2332774 commit 93d36d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const ApplicationsRefreshPanel = ({show, apps, hide}: {show: boolean; app
return;
}

setProgress({percentage: 0, title: 'Starting...'});
setProgress({percentage: 0, title: 'Refreshing applications'});
let i = 0;
for (const app of selectedApps) {
await services.applications.get(app.metadata.name, app.metadata.namespace, params.refreshType).catch(e => {
Expand All @@ -57,7 +57,7 @@ export const ApplicationsRefreshPanel = ({show, apps, hide}: {show: boolean; app
i++;
setProgress({
percentage: i / selectedApps.length,
title: `${i} of ${selectedApps.length} apps now refreshing`
title: `Refreshed ${i} of ${selectedApps.length} applications`
});
}
setProgress({percentage: 100, title: 'Complete'});
Expand Down

0 comments on commit 93d36d1

Please sign in to comment.