You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set data-m-autoload to false for a section that required custom code. The load handler would not run for this section. It turns out another load handler was matching the section, which ran and did nothing because it was for the wrong page. Example: I have two sections. Their data-m-page attributes are "ActivityList" and "SomethingActivityList." I was trying to load SomethingActivityList, but I found in the Check method in routing.ts that ActivityList was getting matched instead. After changing SomethingActivityList to SomethingActivitiesList, it correctly matched the section I wanted to load.
The text was updated successfully, but these errors were encountered:
I set data-m-autoload to false for a section that required custom code. The load handler would not run for this section. It turns out another load handler was matching the section, which ran and did nothing because it was for the wrong page. Example: I have two sections. Their data-m-page attributes are "ActivityList" and "SomethingActivityList." I was trying to load SomethingActivityList, but I found in the Check method in routing.ts that ActivityList was getting matched instead. After changing SomethingActivityList to SomethingActivitiesList, it correctly matched the section I wanted to load.
The text was updated successfully, but these errors were encountered: