fix: ? display uuid instead of the same username for all messages
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
This commit is contained in:
parent
e4a338b99c
commit
68292b4e78
2 changed files with 10 additions and 12 deletions
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div id="message-area">
|
||||
<div id="messages">
|
||||
<Message v-for="message of messages" :username="displayName" :text="message.message"
|
||||
<Message v-for="message of messages" :username="message.user_uuid" :text="message.message"
|
||||
:timestamp="uuidToTimestamp(message.uuid)" format="12" />
|
||||
</div>
|
||||
<div id="message-box">
|
||||
|
|
|
@ -66,7 +66,12 @@ const members = [
|
|||
},
|
||||
{
|
||||
id: "3287484395",
|
||||
displayName: "SauceyRed",
|
||||
displayName: "JustTemmie",
|
||||
avatar: ""
|
||||
},
|
||||
{
|
||||
id: "3287484395",
|
||||
displayName: "GOIN!!!!!!",
|
||||
avatar: ""
|
||||
},
|
||||
{
|
||||
|
@ -76,22 +81,17 @@ const members = [
|
|||
},
|
||||
{
|
||||
id: "3287484395",
|
||||
displayName: "SauceyRed",
|
||||
displayName: "Hatsune Miku Official",
|
||||
avatar: ""
|
||||
},
|
||||
{
|
||||
id: "3287484395",
|
||||
displayName: "SauceyRed",
|
||||
displayName: "Hatsune Miku Official",
|
||||
avatar: ""
|
||||
},
|
||||
{
|
||||
id: "3287484395",
|
||||
displayName: "SauceyRed",
|
||||
avatar: ""
|
||||
},
|
||||
{
|
||||
id: "3287484395",
|
||||
displayName: "SauceyRed",
|
||||
displayName: "Hatsune Miku Official",
|
||||
avatar: ""
|
||||
},
|
||||
{
|
||||
|
@ -123,8 +123,6 @@ function toggleInvitePopup(e: Event) {
|
|||
margin-bottom: .5em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#members-list {
|
||||
padding-top: 3dvh;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue