Go back stops working after using it on first page with nothing to go back to

When using the back button with nothing to go back to it stops working when navigating to other pages. Happens both on Android phone and in preview mode on local PC.

Code example

<JavaScript>
	function goToPage() {
		console.log("Go page");
		router.push("goto_page");
	}

	module.exports = {
		goToPage : goToPage
	};
</JavaScript>

<ClientPanel>
	<Navigator DefaultPath="home">
		<Page ux:Template="home">
			<PageControl ux:Name="containerControl">
				<Page>
					<Panel Tapped="{goToPage}">
					<Text Value="Page 1" />

					</Panel>
				</Page>
			</PageControl>	
		</Page>
		<Page ux:Template="goto_page">
			<PageControl ux:Name="containerControl">
				<Page>
					<Text Value="Page 2" />
				</Page>
			</PageControl>	
		</Page>			
	</Navigator>
</ClientPanel>

Use Go Back on Page 1 then click Page 1 to go to to Page 2. Go Back won’t work for going back to Page 1.

This should have been fixed in a recent patch release. What version of fuse are you running?

1.7.3

It is a different issue than the App crash. The back button just stops working, not going back to the previous page.

I created a new issue ticket.