Linting Issues

This commit is contained in:
Peaches_MLG
2026-01-11 11:49:43 +00:00
parent b76582907c
commit 6c4dee0ac0
2 changed files with 3 additions and 3 deletions
@@ -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()