Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"search.exclude": {
"**/aem/home": true,
"**/node": true
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ boolean canRun() {
}

void describeRun() {
inputs.integerNumber("count") { label = "Users to generate"; min = 1; value = 5000000 }
inputs.integerNumber("count") { label = "Users to generate"; min = 1; value = 10000 }
inputs.text("firstNames") { label = "First names"; description = "One first name per line"; value = "John\nJane\nJack\nAlice\nBob"}
inputs.text("lastNames") { label = "Last names"; description = "One last name per line"; value = "Doe\nSmith\nBrown\nJohnson\nWhite" }
}
Expand Down
2 changes: 1 addition & 1 deletion ui.frontend/src/types/execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function isExecutionNegative(status: ExecutionStatus | null | undefined):
}

export function isExecutionPending(status: ExecutionStatus | null | undefined): boolean {
return !!status && (status === ExecutionStatus.QUEUED || isExecutionActive(status));
return !!status && (status === ExecutionStatus.QUEUED || status === ExecutionStatus.STOPPED || isExecutionActive(status));
}

export function isExecutionActive(status: ExecutionStatus | null | undefined): boolean {
Expand Down
Loading