Skip to content

Commit

Permalink
Merge 0fb74bc into 322802c
Browse files Browse the repository at this point in the history
  • Loading branch information
mherwege authored Mar 7, 2023
2 parents 322802c + 0fb74bc commit 400d06b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundles/org.openhab.ui/web/src/assets/sitemap-lexer.nearley
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ Widget -> %nlwidget _ WidgetAttrs:*
WidgetAttrs -> WidgetAttr {% (d) => [d[0]] %}
| WidgetAttrs _ WidgetAttr {% (d) => d[0].concat([d[2]]) %}
WidgetAttr -> %widgetswitchattr {% (d) => ['switchEnabled', true] %}
| %widgetfreqattr {% (d) => ['frequency', d[1]] %}
| %widgetfrcitmattr {% (d) => ['forceAsItem', d[1]] %}
| %widgetfreqattr WidgetAttrValue {% (d) => ['frequency', d[1]] %}
| %widgetfrcitmattr WidgetAttrValue {% (d) => ['forceAsItem', d[1]] %}
| WidgetAttrName WidgetAttrValue {% (d) => [d[0][0].value, d[1]] %}
| WidgetVisibilityAttrName WidgetVisibilityAttrValue {% (d) => [d[0][0].value, d[1]] %}
| WidgetColorAttrName WidgetColorAttrValue {% (d) => [d[0][0].value, d[1]] %}
Expand Down

0 comments on commit 400d06b

Please sign in to comment.