Skip to content

Commit

Permalink
webui/WebcamPhoto: add muted flag
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Feb 28, 2024
1 parent ee9d36f commit cb9441d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/components/WebcamPhoto.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<video ref="video" :class="{ hidden: webcam.preview.value }" playsinline autoplay />
<video ref="video" :class="{ hidden: webcam.preview.value }" playsinline autoplay muted />
<canvas ref="picture" :class="{ hidden: !webcam.preview.value || webcam.picture.value }" class="w-full" />
<img v-if="webcam.picture.value" :src="webcam.picture.value" class="mx-auto rounded-full h-48" />
</div>
Expand Down

0 comments on commit cb9441d

Please sign in to comment.