Skip to content

Commit

Permalink
Fix Linter error on integer format
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kachanov committed Nov 3, 2020
1 parent ce9884f commit 032e902
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,18 +420,22 @@
"properties": {
"x": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part x coordinate."
},
"y": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part y coordinate."
},
"rowSpan": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part row span."
},
"colSpan": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part column span."
},
"metadata": {
Expand Down Expand Up @@ -462,6 +466,7 @@
"properties": {
"order": {
"type": "integer",
"format": "int32",
"description": "The lens order."
},
"parts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,18 +420,22 @@
"properties": {
"x": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part x coordinate."
},
"y": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part y coordinate."
},
"rowSpan": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part row span."
},
"colSpan": {
"type": "integer",
"format": "int32",
"description": "The dashboard's part column span."
},
"metadata": {
Expand Down Expand Up @@ -532,6 +536,7 @@
"properties": {
"order": {
"type": "integer",
"format": "int32",
"description": "The lens order."
},
"parts": {
Expand Down Expand Up @@ -707,6 +712,7 @@
"code": {
"description": "Service specific error code which serves as the substatus for the HTTP error code.",
"type": "integer",
"format": "int32",
"readOnly": true
},
"message": {
Expand Down

0 comments on commit 032e902

Please sign in to comment.