mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-01 03:18:32 +00:00
Escape backslashes in javascript string (#2861)
This commit is contained in:
parent
e34f446210
commit
aadd6eec19
@ -9,7 +9,7 @@ const props = defineProps([
|
|||||||
])
|
])
|
||||||
|
|
||||||
const config = ref(props.config)
|
const config = ref(props.config)
|
||||||
const outputNamePlaceholder = (props.platform === 'windows') ? '\\.\DISPLAY1' : '0'
|
const outputNamePlaceholder = (props.platform === 'windows') ? '\\\\.\\DISPLAY1' : '0'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
Loading…
Reference in New Issue
Block a user