Skip to content
Open
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
2 changes: 1 addition & 1 deletion cli/src/commands/wheels/assets/init.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ component extends="../base" {
if (len(content) && right(content, 1) != chr(10)) {
content &= chr(10);
}
content &= chr(10) & "# Vite build output" & chr(10);
content = content & chr(10) & "## Vite build output" & chr(10);
content &= arguments.entry & chr(10);
fileWrite(gitignorePath, content);
detailOutput.update(".gitignore", true);
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/wheels/jobs/monitor.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* wheels jobs monitor --queue=mailers
* {code}
*/
component extends="../../base" {
component extends="../base" {

/**
* @interval Refresh interval in seconds (default: 3)
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/wheels/jobs/purge.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* wheels jobs purge --completed --failed --force
* {code}
*/
component extends="../../base" {
component extends="../base" {

/**
* @completed Purge completed jobs (default: true)
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/wheels/jobs/retry.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* wheels jobs retry --limit=10
* {code}
*/
component extends="../../base" {
component extends="../base" {

/**
* @queue Filter by queue name (default: all queues)
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/wheels/jobs/status.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* wheels jobs status --format=json
* {code}
*/
component extends="../../base" {
component extends="../base" {

/**
* @queue Filter by queue name (default: all queues)
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/wheels/jobs/work.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* wheels jobs work --max-jobs=100
* {code}
*/
component extends="../../base" {
component extends="../base" {

/**
* @queue Comma-delimited queue names to process (default: all queues)
Expand Down
4 changes: 2 additions & 2 deletions cli/src/models/AdminViewService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ component {

// Boolean — Yes/No badges
if (field.dataType == "boolean" || field.inputType == "checkbox") {
return "<cfif |ObjectNamePlural|." & field.name
return chr(60) & 'cfif |ObjectNamePlural|.' & field.name
& '><span class="badge bg-success">Yes</span>'
& '<cfelse><span class="badge bg-secondary">No</span></cfif>';
& chr(60) & 'cfelse><span class="badge bg-secondary">No</span>' & chr(60) & '/cfif>';
}

// Email — mailto link
Expand Down
4 changes: 2 additions & 2 deletions cli/src/models/TestMigrationService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,8 @@ component singleton {
},
// Structure key exists
{
pattern = 'assert\s*\(\s*"structKeyExists\s*\(\s*([^,]+),\s*["\']([^"\']+)["\']\s*\)"\s*\)',
replace = 'expect($1).toHaveKey("$2")'
pattern = "assert\s*\(\s*""structKeyExists\s*\(\s*([^,]+),\s*[']([^']+)[']\s*\)""\s*\)",
replace = "expect($1).toHaveKey(""$2"")"
},
// Length checks
{
Expand Down
Loading