fix:#16 fixed toast for room ical

This commit is contained in:
Elmar Kresse
2024-11-18 21:20:21 +01:00
parent 23389eacc8
commit 86a6820038

View File

@ -113,7 +113,7 @@ const button = computed(() => {
onClick: () => {
// Copy iCal link to clipboard
// localhost/api/feed/room?id=selectedRoom.value.name
navigator.clipboard.writeText(getLink("/api/feed/room?id=", selectedRoom.value.name)).then(() => show, () => failedClipboard)
navigator.clipboard.writeText(getLink("/api/feed/room?id=", selectedRoom.value.name)).then(() => show(), () => failedClipboard())
},
};
});