This is an automated email from the ASF dual-hosted git repository.
Harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 7c798e2451 Fixed wording of assert
7c798e2451 is described below
commit 7c798e24512ea422f2c3061c0c7fe8a1fec5349d
Author: Harbs <[email protected]>
AuthorDate: Mon Jun 1 12:40:36 2026 +0300
Fixed wording of assert
---
.../royale/org/apache/royale/style/stylebeads/flexgrid/AlignSelf.as | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/flexgrid/AlignSelf.as
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/flexgrid/AlignSelf.as
index d6109601ff..1787873677 100644
---
a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/flexgrid/AlignSelf.as
+++
b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/stylebeads/flexgrid/AlignSelf.as
@@ -43,7 +43,7 @@ package org.apache.royale.style.stylebeads.flexgrid
[Inspectable(category="General",
enumeration="auto,flex-start,flex-end,center,safe center,safe
flex-end,stretch,baseline,last baseline", defaultValue="")]
override public function set value(value:*):void
{
- assert(["auto","flex-start","flex-end","safe
flex-end","flex-end safe","center","safe center","center safe","baseline","last
baseline","stretch"].indexOf(value) >= 0, "Invalid value for align-items: " +
value);
+ assert(["auto","flex-start","flex-end","safe
flex-end","flex-end safe","center","safe center","center safe","baseline","last
baseline","stretch"].indexOf(value) >= 0, "Invalid value for align-self: " +
value);
_value = value;
var vals:Array = normalizeSafeKeyword(value);
calculatedRuleValue = vals[0];