Skip to content

Commit

Permalink
Optimize: roomId display
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyCreeper committed Oct 10, 2023
1 parent 6cbe218 commit b8e4067
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/views/Cinema.vue
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,11 @@ const playerOption = computed(() => {
</tr>
<tr>
<td>房间ID</td>
<td>{{ roomID }}</td>
<td>
<div class="overflow-hidden text-ellipsis max-w-[150px]">
<span class="truncate">{{ roomID }}</span>
</div>
</td>
</tr>
<tr>
<td>房间密码</td>
Expand Down

0 comments on commit b8e4067

Please sign in to comment.