We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf6a9e commit b706bfdCopy full SHA for b706bfd
src/pages/Help.vue
@@ -61,7 +61,7 @@
61
<br/>
62
</p>
63
<template v-if="doorstopTarget.length > 0">
64
- <p>
+ <p class="margin-top">
65
<button class="button" @click="copyLaunchArgsToClipboard" v-if="!copyingDoorstopText">
66
<i class="fas fa-clipboard"></i>
67
<span class="margin-left--half-width smaller-font">
@@ -151,7 +151,7 @@ const appName = computed(() => ManagerInformation.APP_NAME);
151
watchEffect(async () => {
152
const loaderArgs = doorstopTarget.value;
153
const prerequisiteText = ComputedWrapperLaunchArguments.value;
154
- if (process.platform === 'win32') {
+ if (window.app.getPlatform() === 'win32') {
155
launchArgs.value = loaderArgs;
156
return;
157
}
0 commit comments