disabled debugging
This commit is contained in:
parent
52b7791dc5
commit
5f55036e17
@ -2,9 +2,9 @@
|
|||||||
<div>
|
<div>
|
||||||
<MainHeader />
|
<MainHeader />
|
||||||
<div class="flex flex-col text-white pt-16">
|
<div class="flex flex-col text-white pt-16">
|
||||||
<button @click="deletePlaylist">
|
<!-- <button @click="deletePlaylist">
|
||||||
Delete Playlist
|
Delete Playlist
|
||||||
</button>
|
</button> -->
|
||||||
<div v-for="p in playlist" class="flex flex-row gap-4 h-40 p-5 bg-[#636363]">
|
<div v-for="p in playlist" class="flex flex-row gap-4 h-40 p-5 bg-[#636363]">
|
||||||
<div class="flex min-w-52 w-52">
|
<div class="flex min-w-52 w-52">
|
||||||
<img :src="p.media.images.thumbnail[0].find((p) => p.height === 1080)?.source" alt="Image" class="object-cover rounded-xl" />
|
<img :src="p.media.images.thumbnail[0].find((p) => p.height === 1080)?.source" alt="Image" class="object-cover rounded-xl" />
|
||||||
|
@ -65,6 +65,7 @@ function createWindow() {
|
|||||||
if (singleInstance(app, mainWindow)) return
|
if (singleInstance(app, mainWindow)) return
|
||||||
|
|
||||||
// Open the DevTools.
|
// Open the DevTools.
|
||||||
|
!isProduction &&
|
||||||
mainWindow.webContents.openDevTools({
|
mainWindow.webContents.openDevTools({
|
||||||
mode: 'bottom'
|
mode: 'bottom'
|
||||||
})
|
})
|
||||||
@ -199,8 +200,8 @@ ipcMain.handle(
|
|||||||
})
|
})
|
||||||
|
|
||||||
mainWindow.webContents.once('did-finish-load', () => {
|
mainWindow.webContents.once('did-finish-load', () => {
|
||||||
mainWindow.show();
|
mainWindow.show()
|
||||||
});
|
})
|
||||||
|
|
||||||
mainWindow.loadURL(opt.url)
|
mainWindow.loadURL(opt.url)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user