Skip to content

Commit

Permalink
fix run on server missing for posix
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Oct 28, 2024
1 parent ee8aada commit 1adeadd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/modals/agents/RunScript.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@
/>
<q-checkbox v-model="state.save_all_output" label="Save all output" />
</q-card-section>
<q-card-section v-if="agent.plat === 'windows'">
<q-card-section>
<q-checkbox
v-if="!state.run_on_server"
v-if="agent.plat === 'windows' && !state.run_on_server"
v-model="state.run_as_user"
label="Run As User"
>
Expand Down

0 comments on commit 1adeadd

Please sign in to comment.