We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a024d commit a54979dCopy full SHA for a54979d
ng-appserver/src/main/java/ng/appserver/NGContext.java
@@ -136,6 +136,19 @@ public void setComponent( final NGComponent component ) {
136
*/
137
public NGComponent page() {
138
return _page;
139
+
140
+ // FIXME:
141
+ // We theoretically could just walk up the tree and check for the root-level component to get the page
142
+ // We're going to have to look into that while considering (a) performance and (b) stateless components
143
+ // // Hugi 2025-06-08
144
+ //
145
+ // NGComponent current = component();
146
147
+ // while( current.parent() != null ) {
148
+ // current = current.parent();
149
+ // }
150
151
+ // return current;
152
}
153
154
/**
0 commit comments