Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
Studio suggests incorrect values for datatype attribute in Component …
Browse files Browse the repository at this point in the history
…Inspector for Slider component #658
  • Loading branch information
Flaurite committed Sep 13, 2021
1 parent 040583e commit 514177a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/src/main/java/io/jmix/ui/component/Slider.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
@StudioProperty(name = "property", type = PropertyType.PROPERTY_PATH_REF,
options = {"decimal", "double", "int", "long", "float"}, typeParameter = "V"),
@StudioProperty(name = "orientation", type = PropertyType.ENUMERATION,
defaultValue = "horizontal", options = {"vertical", "horizontal"})
defaultValue = "horizontal", options = {"vertical", "horizontal"}),
@StudioProperty(name = "datatype", type = PropertyType.DATATYPE_ID,
options = {"decimal", "double", "int", "long"}, typeParameter = "V")
},
groups = {
@PropertiesGroup(constraint = PropertiesConstraint.ALL_OR_NOTHING,
Expand Down

0 comments on commit 514177a

Please sign in to comment.