Skip to content

Commit

Permalink
b
Browse files Browse the repository at this point in the history
  • Loading branch information
polterguy committed Dec 27, 2023
1 parent e2a6ac5 commit c47edc2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/files/misc/workflows/actions/misc/transform.hl
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
mandatory:bool:false
.icon:input

// Simply returning all nodes specified as input arguments.
return-nodes:x:@.arguments/*/*
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,7 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges {
candidates: [
{ value: 'string', label: 'string' },
{ value: 'int', label: 'int' },
{ value: 'decimal', label: 'decimal' },
{ value: 'long', label: 'long' },
{ value: 'bool', label: 'bool' },
{ value: 'date', label: 'date' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,7 @@ export class IdeTreeComponent implements OnInit {
},
candidates: [
{ value: 'string', label: 'string' },
{ value: 'decimal', label: 'decimal' },
{ value: 'int', label: 'int' },
{ value: 'long', label: 'long' },
{ value: 'bool', label: 'bool' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { CreateArrayDialogComponent } from './components/create-array-dialog/cre
selector: 'app-formly-array',
template: `
<div class="w-100 standalone-field mb-4">
<div class="mb-2 fw-bold">{{field.key}}</div>
<mat-chip-list>
<mat-chip
*ngFor="let item of items"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { GeneralService } from 'src/app/services/general.service';
selector: 'app-formly-key-value',
template: `
<div class="w-100 standalone-field mb-4">
<div class="mb-2 fw-bold">{{field.key}}</div>
<mat-chip-list>
<mat-chip
*ngFor="let item of items"
Expand Down

0 comments on commit c47edc2

Please sign in to comment.