mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Fix error during rotation
Fix https://github.com/GNS3/gns3-gui/issues/1474
This commit is contained in:
parent
bc5b5969eb
commit
0bbda4a5d7
@ -50,7 +50,7 @@ DRAWING_OBJECT_SCHEMA = {
|
||||
"rotation": {
|
||||
"description": "Rotation of the element",
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"minimum": -359,
|
||||
"maximum": 360
|
||||
},
|
||||
"svg": {
|
||||
|
@ -33,7 +33,9 @@ LABEL_OBJECT_SCHEMA = {
|
||||
},
|
||||
"rotation": {
|
||||
"description": "Rotation of the label",
|
||||
"type": "integer"
|
||||
"type": "integer",
|
||||
"minimum": -359,
|
||||
"maximum": 360
|
||||
},
|
||||
},
|
||||
"required": [
|
||||
|
Loading…
Reference in New Issue
Block a user