Skip to content

Commit

Permalink
made the sortBy not required
Browse files Browse the repository at this point in the history
  • Loading branch information
brasov2de committed May 11, 2023
1 parent 34b4760 commit ef6f6d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ColorfulOptionset/ColorfulOptionset.cdsproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup>

<PropertyGroup>
<SolutionPackageType>Both</SolutionPackageType>
</PropertyGroup>
<!-- Solution Packager overrides, un-comment to use: SolutionPackagerType (Managed, Unmanaged, Both)
<PropertyGroup>
<SolutionPackageType>Managed</SolutionPackageType>
Expand Down
4 changes: 2 additions & 2 deletions Control/ColorfulOptionset/ControlManifest.Input.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<manifest>
<control namespace="ORBIS" constructor="ColorfulOptionset" version="0.0.8" display-name-key="ORBIS.ColorfulOptionset" description-key="ColorfulOptionset description" control-type="virtual">
<control namespace="ORBIS" constructor="ColorfulOptionset" version="0.0.9" display-name-key="ORBIS.ColorfulOptionset" description-key="ColorfulOptionset description" control-type="virtual">
<property name="optionsInput" display-name-key="OptionSet" description-key="OptionSet" of-type="OptionSet" usage="bound" required="true" />
<property name="icon" display-name-key="Icon" description-key="Icon" of-type="SingleLine.Text" usage="input" required="false" />
<property name="sortBy" display-name-key="Sort by" description-key="Sort by" of-type="Enum" usage="input" required="true" >
<property name="sortBy" display-name-key="Sort by" description-key="Sort by" of-type="Enum" usage="input" required="false" default-value="VALUE">
<value name="VALUE" display-name-key="Value" description-key="Sort by the value of the options" default="true">VALUE</value>
<value name="TEXT" display-name-key="Text" description-key="Sort by the text of the options, corresponding to the user language">TEXT</value>
</property>
Expand Down

0 comments on commit ef6f6d4

Please sign in to comment.