Skip to content

Commit

Permalink
Escape backslashes in javascript string (#2861)
Browse files Browse the repository at this point in the history
  • Loading branch information
ns6089 committed Jul 15, 2024
1 parent e34f446 commit aadd6ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const props = defineProps([
])
const config = ref(props.config)
const outputNamePlaceholder = (props.platform === 'windows') ? '\\.\DISPLAY1' : '0'
const outputNamePlaceholder = (props.platform === 'windows') ? '\\\\.\\DISPLAY1' : '0'
</script>

<template>
Expand Down

0 comments on commit aadd6ee

Please sign in to comment.