Skip to content

Commit

Permalink
Allow "flow" as an alias for "group"
Browse files Browse the repository at this point in the history
Signed-off-by: reidspencer <reid.spencer@yoppworks.com>
  • Loading branch information
reid-spencer committed Oct 13, 2023
1 parent 5b5c674 commit 712924b
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,19 @@ private[parsing] trait CommonParser extends NoWhiteSpaceParsers {

def groupAliases[u: P]: P[String] = {
P(
StringIn(Keywords.group, "page", "pane", "dialog", "popup", "frame", "column", "window", "section", "tab").!
StringIn(
Keywords.group,
"page",
"pane",
"dialog",
"popup",
"frame",
"column",
"window",
"section",
"tab",
"flow"
).!
)
}

Expand Down

0 comments on commit 712924b

Please sign in to comment.