Skip to content

Commit

Permalink
client: fix playback blocked prompt not being localizable
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 committed Feb 25, 2024
1 parent d91d1e6 commit 38810f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/views/Room.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
<div class="in-video-chat">
<Chat ref="chat" @link-click="setAddPreviewText" />
</div>
<div class="playback-blocked-prompt" v-if="mediaPlaybackBlocked">
<div class="playback-blocked-prompt" v-if="mediaPlaybackBlocked || true">

Check failure on line 50 in client/src/views/Room.vue

View workflow job for this annotation

GitHub Actions / lint (18.x)

Replace `·class="playback-blocked-prompt"·v-if="mediaPlaybackBlocked·||·true"` with `⏎↹↹↹↹↹↹↹↹class="playback-blocked-prompt"⏎↹↹↹↹↹↹↹↹v-if="mediaPlaybackBlocked·||·true"⏎↹↹↹↹↹↹↹`
<v-btn
prepend-icon="fa:fas fa-play"
size="x-large"
color="warning"
@click="onClickUnblockPlayback"
>
Play
{{ $t("common.play") }}
</v-btn>
</div>
</div>
Expand Down Expand Up @@ -824,6 +824,7 @@ $in-video-chat-width-small: 250px;
z-index: 200;
display: flex;
justify-content: center;
align-items: center;
}
.flip-list-move {
Expand Down

0 comments on commit 38810f4

Please sign in to comment.