Linting Issues
This commit is contained in:
@@ -217,7 +217,7 @@ function getParentTitle(
|
||||
.map(artist => {
|
||||
const artistItem: ItemDto = {
|
||||
...artist,
|
||||
Key: artist.Id ?? "",
|
||||
Key: artist.Id ?? '',
|
||||
Type: BaseItemKind.MusicArtist,
|
||||
IsFolder: true
|
||||
};
|
||||
@@ -600,7 +600,7 @@ function getMediaTitle(cardOptions: CardOptions, item: ItemDto): TextLine {
|
||||
});
|
||||
|
||||
return getTextActionButton({
|
||||
Key: item.Id ?? "",
|
||||
Key: item.Id ?? '',
|
||||
Id: item.Id,
|
||||
ServerId: item.ServerId,
|
||||
Name: name,
|
||||
|
||||
@@ -95,7 +95,7 @@ function createPlaylist(dlg: DialogElement) {
|
||||
return getPlaylistsApi(api)
|
||||
.createPlaylist({
|
||||
createPlaylistDto: {
|
||||
Name: name ?? "",
|
||||
Name: name ?? '',
|
||||
IsPublic: dlg.querySelector<HTMLInputElement>('#chkPlaylistPublic')?.checked,
|
||||
Ids: itemIds?.split(','),
|
||||
UserId: apiClient.getCurrentUserId()
|
||||
|
||||
Reference in New Issue
Block a user