Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config-ui/src/routes/onboard/step-4.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const Step4 = () => {

const collector = {
plugin: collectorTask.plugin,
name: `Collect non-Git entitles in ${collectorTask.options?.fullName ?? 'Unknown'}`,
name: `Collect non-Git entities in ${collectorTask.options?.fullName ?? 'Unknown'}`,
percent: collectorSubtasks.length
? Math.floor((collectorSubtasksFinished.length / collectorSubtasks.length) * 100)
: 0,
Expand All @@ -151,7 +151,7 @@ export const Step4 = () => {

const extractor = {
plugin: extractorTask.plugin,
name: `Collect Git entitles in ${extractorTask.options?.fullName ?? 'Unknown'}`,
name: `Collect Git entities in ${extractorTask.options?.fullName ?? 'Unknown'}`,
percent: extractorSubtasks.length
? Math.floor((extractorSubtasksFinished.length / extractorSubtasks.length) * 100)
: 0,
Expand Down