Skip to content

Commit 109955e

Browse files
committed
feat(selection-helper-web): fix texts and add description
1 parent 7bfe7eb commit 109955e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

packages/pluggableWidgets/selection-helper-web/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
### Added
1010

11-
- We added Selection Helper widget.
11+
- We added Selection helper widget.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Selection Helper
1+
# Selection helper
22

3-
Please see [Selection Helper](https://docs.mendix.com/appstore/modules/gallery#selection-helper-widget) in the Mendix documentation for details.
3+
Please see [Selection helper](https://docs.mendix.com/appstore/modules/gallery#selection-helper-widget) in the Mendix documentation for details.

packages/pluggableWidgets/selection-helper-web/src/SelectionHelper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function SelectionHelper(props: SelectionHelperContainerProps): ReactElem
1010
if (contextValue.hasError) {
1111
return (
1212
<Alert bootstrapStyle="danger">
13-
The Selection Helper widget must be placed inside the header of the Gallery widget with multi-selection.
13+
The Selection helper widget must be placed inside the header of the Gallery widget with multi-selection.
1414
</Alert>
1515
);
1616
}

packages/pluggableWidgets/selection-helper-web/src/SelectionHelper.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<widget id="com.mendix.widget.web.selectionhelper.SelectionHelper" pluginWidget="true" needsEntityContext="true" offlineCapable="true" supportedPlatform="Web" xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../node_modules/mendix/custom_widget.xsd">
3-
<name>Selection Helper</name>
3+
<name>Selection helper</name>
44
<description />
55
<studioProCategory>Data controls</studioProCategory>
66
<studioCategory>Data Controls</studioCategory>
@@ -9,14 +9,14 @@
99
<propertyGroup caption="General">
1010
<property key="renderStyle" type="enumeration" defaultValue="checkbox">
1111
<caption>Style</caption>
12-
<description />
12+
<description>Custom enables placeholders for using widgets for the different states.</description>
1313
<enumerationValues>
14-
<enumerationValue key="checkbox">Checkbox</enumerationValue>
14+
<enumerationValue key="checkbox">Check box</enumerationValue>
1515
<enumerationValue key="custom">Custom</enumerationValue>
1616
</enumerationValues>
1717
</property>
1818
<property key="checkboxCaption" type="textTemplate" required="false">
19-
<caption>Checkbox caption</caption>
19+
<caption>Check box caption</caption>
2020
<description />
2121
</property>
2222
<property key="customAllSelected" type="widgets">

0 commit comments

Comments
 (0)