This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 8166dab88d2ed507c319967fa8b96757855571b3 Author: Josh Tynjala <[email protected]> AuthorDate: Wed Apr 30 10:28:12 2025 -0700 ASDoc: fix Top Level package detail by using decodeURIComponent() on the hash --- examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml index 35d56dc090..b73e0092f0 100644 --- a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml +++ b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml @@ -114,6 +114,7 @@ limitations under the License. currentState = "packages"; else { + hash = decodeURIComponent(hash); var delimiter:String = ASDocModel.DELIMITER; var c:int = hash.indexOf(delimiter); if (c == -1)
