Skip to content

Commit

Permalink
fix indentation issues
Browse files Browse the repository at this point in the history
Signed-off-by: Souptik Datta <[email protected]>
  • Loading branch information
Souptik2001 committed May 13, 2024
1 parent 9c9d05c commit a0eec76
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions example/src/blocks/color-settings-example/block.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "example/color-settings-example",
"title": "Color Settings Component Example",
"description": "Example Block to show the Color settings component",
"icon": "smiley",
"category": "common",
"example": {},
"supports": {
"html": false
},
"attributes": {
"color": {
"type": "string"
}
},
"variations": [],
"description": "Example Block to show the Color settings component",
"icon": "smiley",
"category": "common",
"example": {},
"supports": {
"html": false
},
"attributes": {
"color": {
"type": "string"
}
},
"variations": [],
"editorScript": "file:./index.js"
}
4 changes: 2 additions & 2 deletions example/src/blocks/color-settings-example/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const BlockEdit = (props) => {

const colors = [
{ name: 'red', color: '#f00' },
{ name: 'white', color: '#fff' },
{ name: 'blue', color: '#00f' },
{ name: 'white', color: '#fff' },
{ name: 'blue', color: '#00f' },
];
return (
<>
Expand Down

0 comments on commit a0eec76

Please sign in to comment.