-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add page to allow selection of which variables to show in the overlay…
… subtitles log
- Loading branch information
1 parent
ad782f6
commit a0dcbb3
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<BaseConfigurationView> | ||
<template #title>Logs configuration</template> | ||
<template #content> | ||
<h1 class="text-lg font-bold text-slate-600">Variables to be show in the overlay subtitles log:</h1> | ||
<div class="flex w-[60%] flex-wrap"> | ||
<v-checkbox | ||
v-for="variable in DatalogVariable" | ||
:key="variable" | ||
v-model="datalogger.selectedVariablesToShow.value" | ||
:label="variable" | ||
:value="variable" | ||
></v-checkbox> | ||
</div> | ||
</template> | ||
</BaseConfigurationView> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { datalogger, DatalogVariable } from '@/libs/logging' | ||
import BaseConfigurationView from './BaseConfigurationView.vue' | ||
</script> |