From e9ed63ee246864a5e50a71840d8d459a9812586f Mon Sep 17 00:00:00 2001 From: maciejpedzich Date: Thu, 7 Jul 2022 08:46:09 +0200 Subject: [PATCH] Fix accidentally dynamic relative tab URLs --- pages/playlists/[playlistId].vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/playlists/[playlistId].vue b/pages/playlists/[playlistId].vue index 797d865..390008d 100644 --- a/pages/playlists/[playlistId].vue +++ b/pages/playlists/[playlistId].vue @@ -10,17 +10,17 @@ const tabItems = [ { label: 'Browse snapshots', icon: 'pi pi-calendar', - to: `./snapshots` + to: `/playlists/${playlistId}/snapshots` }, { label: 'Compare snapshots', icon: 'pi pi-sort-alt', - to: `./snapshots/compare` + to: `/playlists/${playlistId}/snapshots/compare` }, { label: 'Show statistics', icon: 'pi pi-chart-bar', - to: `./stats` + to: `/playlists/${playlistId}/stats` } ];