refactor/issue-1/first-setup #9

Merged
fbenoist68 merged 16 commits from refactor/issue-1/first-setup into dev 2024-01-02 21:20:30 +01:00
Showing only changes of commit dbb7be74fd - Show all commits

View File

@ -24,7 +24,12 @@ onMounted(() => {
}) })
const openVnc = (ip: string) => { const openVnc = (ip: string) => {
const url = `${selectedProtocol.value}://${ip}` let url = ''
if (selectedProtocol.value === 'hdpos')
url = `hdpos://tightvnc?ip=${ip}`
else
url = `${selectedProtocol.value}://${ip}`
window.open(url, '_blank') window.open(url, '_blank')
} }