Skip to content

Commit

Permalink
fix: naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
roar-larsen committed Jul 4, 2023
1 parent 4b8cabc commit cd8eddd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,20 @@
"optional": false
},
{
"name": "Manufacturer",
"name": "manufacturer",
"label": "Manufacturer",
"type": "CORE:BlueprintAttribute",
"attributeType": "string"
},
{
"name": "Model",
"name": "model",
"label": "Model",
"type": "CORE:BlueprintAttribute",
"attributeType": "string"
},
{
"name": "Color",
"name": "color",
"label": "Color",
"type": "CORE:BlueprintAttribute",
"attributeType": "string",
"optional": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"cars": [
{
"type": "./blueprints/Car",
"Manufacturer": "Volvo",
"Model": "XC40",
"Color": "White"
"manufacturer": "Volvo",
"model": "XC40",
"color": "White"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"plugin": "@development-framework/dm-core-plugins/table",
"config": {
"type": "PLUGINS:dm-core-plugins/table/TablePluginConfig",
"columns": ["Manufacturer", "Model", "Color"],
"columns": ["manufacturer", "model", "color"],
"editableColumns": [],
"functionality": {
"type": "PLUGINS:dm-core-plugins/table/TableFunctionalityConfig",
Expand Down

0 comments on commit cd8eddd

Please sign in to comment.