[SOLVED] Backlink skip? [Link][Routes][Path]

Hi I am new!
I’m currently testing Framework7 and think it’s really good.
But now I didn’t find anything in the doc about backlink.

Example pages clicks:
Home -> Cars -> Car -> Edit -> Car

Click backlink:
Car -> Edit -> Car -> Cars -> Home

I want to be led from car to cars and not back to edit.
Car -> Cars -> Home

I hope you can help me :slight_smile:

My Idea from Edit to Car:

app.router.navigate({
    name: 'car',
    params: {carId: 1},
}, {
    reloadPrevious: true,
    ignoreCache: true,
});

Correct way will be calling back with force: true

app.router.back('/cars/', { force: true })
1 Like