We are using the map, where we have markers that locate where a unit is located. By clicking on it it opens a popup using the UI popup. It opens up a view like this:
Here we would show some information about the system, and then we have a button to navigate to the RTU’s view, which uses a script to navigate to the correct view. All this works, but when it changes it throws an warning in the logs:
Perspective.ClientSession : Received prop sync for missing view “{The name of the page it navigated away from}”
I looked into this and found out it had something to do with navigating using HTTP and then the gateway loses connection or something to the view and throws this warning cause it didn’t get a shutdown event from the view.
I think i have narrowed it down to this marker popup with a navigation button, since the popup is never closed when navigating and to close a perspective popup you would need an ID for the popup, but inside the marker popup as shown here:
There isn’t an id shown, so I don’t know how i can close the popup successfully before navigating to a new view.
The warning message could just be ignored but it bugs me that it comes up and i would like to find a way to keep the functionality and lose the warning log.

