Skip to content

Commit

Permalink
fix: realclose is inverted
Browse files Browse the repository at this point in the history
Signed-off-by: Martichou <[email protected]>
  • Loading branch information
Martichou committed Mar 7, 2024
1 parent 1e470cf commit 412f024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="form-control hover:bg-base-content hover:bg-opacity-10 rounded-xl p-2">
<label class="cursor-pointer label" @click="setRealclose(!realclose)">
<span class="label-text">Keep running on close</span>
<input type="checkbox" :checked="realclose" class="checkbox checkbox-primary focus:outline-none">
<input type="checkbox" :checked="!realclose" class="checkbox checkbox-primary focus:outline-none">
</label>
</div>
</div>
Expand Down

0 comments on commit 412f024

Please sign in to comment.