Big scary buttons (#1471)

This commit is contained in:
Matt
2024-10-24 20:48:02 -07:00
committed by GitHub
parent 9b61ed156c
commit 385059c233
14 changed files with 375 additions and 24 deletions

View File

@@ -51,6 +51,9 @@ export const useCameraSettingsStore = defineStore("cameraSettings", {
cameraNames(): string[] {
return this.cameras.map((c) => c.nickname);
},
cameraUniqueNames(): string[] {
return this.cameras.map((c) => c.nickname);
},
currentCameraName(): string {
return this.cameraNames[useStateStore().currentCameraIndex];
},