Skip to content

Commit

Permalink
webui: replace static room title and add footer template
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Dec 10, 2022
1 parent 4a7ad4d commit 692dc14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/components/Chat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="h-full flex flex-col bg-white shadow-xl overflow-y-scroll">
<div class="p-4">
<div class="flex items-start justify-between">
<h2 class="text-lg font-medium text-gray-900" id="slide-over-title">Studio Link - Release Day</h2>
<h2 class="text-lg font-medium text-gray-900" id="slide-over-title">Chat</h2>
</div>
</div>

Expand Down
2 changes: 2 additions & 0 deletions webui/src/components/FooterLinks.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<template>
</template>
2 changes: 2 additions & 0 deletions webui/src/views/LoginView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@
</div>
</div>
</div>
<FooterLinks />
</div>
</template>

<script setup lang="ts">
import { Avatar, Factory } from 'vue3-avataaars'
import { ref, onMounted } from 'vue'
import WebcamPhoto from '../components/WebcamPhoto.vue'
import FooterLinks from '../components/FooterLinks.vue'
import webcam from '../webcam'
import api from '../api'
Expand Down

0 comments on commit 692dc14

Please sign in to comment.