[web] Streamline names of Spotify components to match their library counterpart

This commit is contained in:
Alain Nussbaumer
2024-03-26 00:59:15 +01:00
parent 6fd4db14fb
commit ed5f2028a1
11 changed files with 37 additions and 37 deletions

View File

@@ -43,7 +43,7 @@ import CoverArtwork from '@/components/CoverArtwork.vue'
import ModalDialogAlbumSpotify from '@/components/ModalDialogAlbumSpotify.vue'
export default {
name: 'ListItemAlbumSpotify',
name: 'ListAlbumsSpotify',
components: { CoverArtwork, ModalDialogAlbumSpotify },
props: { items: { required: true, type: Object } },

View File

@@ -24,7 +24,7 @@
import ModalDialogArtistSpotify from '@/components/ModalDialogArtistSpotify.vue'
export default {
name: 'ListItemArtistSpotify',
name: 'ListArtistsSpotify',
components: { ModalDialogArtistSpotify },
props: { items: { required: true, type: Object } },

View File

@@ -25,7 +25,7 @@
import ModalDialogPlaylistSpotify from '@/components/ModalDialogPlaylistSpotify.vue'
export default {
name: 'ListItemPlaylistSpotify',
name: 'ListPlaylistsSpotify',
components: {
ModalDialogPlaylistSpotify
},

View File

@@ -56,7 +56,7 @@ import ModalDialogTrackSpotify from '@/components/ModalDialogTrackSpotify.vue'
import webapi from '@/webapi'
export default {
name: 'ListItemTrackSpotify',
name: 'ListTracksSpotify',
components: { ModalDialogTrackSpotify },
props: {
context_uri: { default: '', type: String },