Bugfix on mutualOpen localStorage setting

This commit is contained in:
Noah 2023-11-18 15:44:13 -08:00
parent deb3bb616b
commit 30fbba2f55

View File

@ -419,7 +419,7 @@ export default {
} }
}, },
"webcam.mutualOpen": function () { "webcam.mutualOpen": function () {
LocalStorage.set('videoMutualOpen', this.webcam.videoMutualOpen); LocalStorage.set('videoMutualOpen', this.webcam.mutualOpen);
if (this.webcam.active) { if (this.webcam.active) {
this.sendMe(); this.sendMe();
} }
@ -3560,9 +3560,11 @@ export default {
</label> </label>
</div> </div>
<!-- Device Pickers: just in case the user had granted video permission in the past, <!--
and we are able to enumerate their device names, we can show them here before they Device Pickers: just in case the user had granted video permission in the past,
go on this time.--> and we are able to enumerate their device names, we can show them here before they
go on this time.
-->
<div class="columns is-mobile" v-if="webcam.videoDevices.length > 0 || webcam.audioDevices.length > 0"> <div class="columns is-mobile" v-if="webcam.videoDevices.length > 0 || webcam.audioDevices.length > 0">
<div class="column"> <div class="column">
@ -3874,17 +3876,17 @@ export default {
<!-- Debugging - copy a lot of these to simulate more videos --> <!-- Debugging - copy a lot of these to simulate more videos -->
<!-- <div class="feed"> <!-- <div class="feed">
hi hi
</div> </div>
<div class="feed"> <div class="feed">
hi hi
</div> </div>
<div class="feed"> <div class="feed">
hi hi
</div> </div>
<div class="feed"> <div class="feed">
hi hi
</div> --> </div> -->
</div> </div>
<div class="card-content" id="chatHistory" :class="{ <div class="card-content" id="chatHistory" :class="{
@ -4002,7 +4004,7 @@ export default {
</div> </div>
<div class="dropdown-menu" id="input-emoji-picker" role="menu" style="z-index: 9000"> <div class="dropdown-menu" id="input-emoji-picker" role="menu" style="z-index: 9000">
<!-- Note: z-index so the popup isn't covered by the "Auto-scroll" <!-- Note: z-index so the popup isn't covered by the "Auto-scroll"
label on the chat history panel --> label on the chat history panel -->
<div class="dropdown-content p-0"> <div class="dropdown-content p-0">
<EmojiPicker :native="true" :display-recent="true" :disable-skin-tones="true" <EmojiPicker :native="true" :display-recent="true" :disable-skin-tones="true"
theme="auto" @select="onSelectEmoji"> theme="auto" @select="onSelectEmoji">