add "go to artist" and "go to album artist" context options

+ refactor api endpoints to point to / for production
This commit is contained in:
geoffrey45
2022-12-27 17:30:59 +03:00
committed by Mungai Njoroge
parent c52390117e
commit 4476a8ebe0
9 changed files with 55 additions and 91 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ export interface Track extends AlbumDisc {
title: string;
album?: string;
artist: Artist[];
albumartist: string;
albumartist: Artist[];
albumhash?: string;
folder?: string;
filepath?: string;
@@ -70,7 +70,7 @@ export interface Artist {
export interface Option {
type?: string;
label?: string;
action: () => void;
action?: () => void;
children?: Option[] | false;
icon?: string;
critical?: Boolean;