Skip to content

Commit

Permalink
fix: inputs placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinOm committed Jun 21, 2024
1 parent 8629df7 commit 15420c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const propertyPaneContentConfig = [
propertyName: "regex",
label: "Regex",
controlType: "INPUT_TEXT",
placeholderText: "^\\w+@[a-zA-Z_]+?\\.[a-zA-Z]{2,3}$",
placeholderText: "^\\w+@[a-zA-Z_]$",
isBindProperty: true,
isTriggerProperty: false,
validation: { type: ValidationTypes.REGEX },
Expand All @@ -37,7 +37,7 @@ export const propertyPaneContentConfig = [
propertyName: "validation",
label: "Valid",
controlType: "INPUT_TEXT",
placeholderText: "{{ Input1.text.length > 0 }}",
placeholderText: "{{ Input1.isValid }}",
isBindProperty: true,
isTriggerProperty: false,
validation: {
Expand Down

0 comments on commit 15420c1

Please sign in to comment.