-
-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Labels
C-bugCategory - BugCategory - Bug
Description
get steps() {
const steps = [];
const gradient = colorGradient('#3D68FF', '#8845FF', this.maxStepsNumber);
for (let i = 0; i < this.maxStepsNumber; i++) {
steps.push({
stepnum: i + 1,
status: i <= this.currentStepIndex ? 'active' : '',
background: htmlSafe(`background: ${gradient[i]};`),
});
}
return steps;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C-bugCategory - BugCategory - Bug
Type
Fields
Give feedbackPriority
None yet