Skip to content

Commit

Permalink
fix: correct moddle string->String type
Browse files Browse the repository at this point in the history
This prevents encoding errors as elements are properly regarded as
encodeable.

Related to camunda/camunda-modeler#2365
  • Loading branch information
nikku authored and philippfromme committed Jul 14, 2021
1 parent e8ae4c1 commit 4553dea
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions resources/zeebe.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,12 @@
"properties": [
{
"name": "type",
"type": "string",
"type": "String",
"isAttr": true
},
{
"name": "retries",
"type": "string",
"type": "String",
"isAttr": true
}
]
Expand All @@ -184,22 +184,22 @@
"properties": [
{
"name": "inputCollection",
"type": "string",
"type": "String",
"isAttr": true
},
{
"name": "inputElement",
"type": "string",
"type": "String",
"isAttr": true
},
{
"name": "outputCollection",
"type": "string",
"type": "String",
"isAttr": true
},
{
"name": "outputElement",
"type": "string",
"type": "String",
"isAttr": true
}
]
Expand All @@ -217,12 +217,12 @@
"properties": [
{
"name": "processId",
"type": "string",
"type": "String",
"isAttr": true
},
{
"name": "processIdExpression",
"type": "string",
"type": "String",
"isAttr": true
},
{
Expand All @@ -245,12 +245,12 @@
"properties": [
{
"name": "id",
"type": "string",
"type": "String",
"isAttr": true
},
{
"name": "body",
"type": "string",
"type": "String",
"isBody": true
}
]
Expand All @@ -268,7 +268,7 @@
"properties": [
{
"name": "formKey",
"type": "string",
"type": "String",
"isAttr": true
}
]
Expand Down

0 comments on commit 4553dea

Please sign in to comment.