Change all tab links to relative paths

This commit is contained in:
Maciej Pędzich 2022-07-05 08:31:51 +02:00
parent 1afac8235a
commit b03f715aa9

View File

@ -10,17 +10,17 @@ const tabItems = [
{
label: 'Browse snapshots',
icon: 'pi pi-calendar',
to: `/playlists/${playlistId}/snapshots`
to: `./snapshots`
},
{
label: 'Compare snapshots',
icon: 'pi pi-sort-alt',
to: `/playlists/${playlistId}/snapshots/compare`
to: `./snapshots/compare`
},
{
label: 'Show statistics',
icon: 'pi pi-chart-bar',
to: `/playlists/${playlistId}/statistics`
to: `./statistics`
}
];