Skip to content

Commit

Permalink
Adjust workflow auto-completion set
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Feb 11, 2025
1 parent 2fab355 commit 61db9ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/web/workflow/src/lib/editor-auto-complete.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export const EXPRESSION_EDITOR_AUTO_COMPLETE_VALUES = [
{ value: 'sum(', caption: 'sum(...number)' },
{ value: 'average(', caption: 'average(...number)' },
{ value: 'random(', caption: 'random(a, b?)' },
{ value: 'int(', caption: 'int' },
{ value: 'float(', caption: 'float' },
{ value: 'toJSON(', caption: 'toJSON' },
{ value: 'int(', caption: 'int(number)' },
{ value: 'float(', caption: 'float(number)' },
{ value: 'toJSON(', caption: 'toJSON(string)' },
{ value: 'trim(', caption: 'trim(string)' },
{ value: 'trimLeft(', caption: 'trimLeft(string, remove)' },
{ value: 'trimRight(', caption: 'trimRight(string, remove)' },
Expand Down

0 comments on commit 61db9ee

Please sign in to comment.