Skip to content

Commit

Permalink
chore: keep custom form lower-cased
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku authored Dec 14, 2023
1 parent 761ad59 commit a06dded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/zeebe/properties/FormProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function FormType(props) {
{ value: '', label: translate('<none>') },
{ value: FORM_TYPES.CAMUNDA_FORM_LINKED, label: translate('Camunda Form (linked)') },
{ value: FORM_TYPES.CAMUNDA_FORM_EMBEDDED, label: translate('Camunda Form (embedded)') },
{ value: FORM_TYPES.CUSTOM_FORM, label: translate('Custom Form key') }
{ value: FORM_TYPES.CUSTOM_FORM, label: translate('Custom form key') }
];
};

Expand Down

0 comments on commit a06dded

Please sign in to comment.