mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-26 18:23:47 +02:00
+bio logging 1
This commit is contained in:
@@ -8447,21 +8447,15 @@ speechSynthesis.getVoices();
|
|||||||
$app.addFeed(feed);
|
$app.addFeed(feed);
|
||||||
database.addStatusToDatabase(feed);
|
database.addStatusToDatabase(feed);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (props.bio) {
|
if (props.bio) {
|
||||||
var bio = '';
|
var bio = '';
|
||||||
var previousBio = '';
|
var previousBio = '';
|
||||||
if (props.bio) {
|
|
||||||
if (props.bio[0]) {
|
if (props.bio[0]) {
|
||||||
bio = props.bio[0];
|
bio = props.bio[0];
|
||||||
}
|
}
|
||||||
if (props.bio[1]) {
|
if (props.bio[1]) {
|
||||||
previousBio = props.bio[1];
|
previousBio = props.bio[1];
|
||||||
}
|
}
|
||||||
} else if (ref.bio) {
|
|
||||||
bio = ref.bio;
|
|
||||||
previousBio = ref.bio;
|
|
||||||
}
|
|
||||||
var feed = {
|
var feed = {
|
||||||
created_at: new Date().toJSON(),
|
created_at: new Date().toJSON(),
|
||||||
type: 'Bio',
|
type: 'Bio',
|
||||||
|
|||||||
@@ -367,14 +367,10 @@ html
|
|||||||
i.x-user-status(:class="statusClass(scope.row.status)")
|
i.x-user-status(:class="statusClass(scope.row.status)")
|
||||||
span(v-text="scope.row.statusDescription")
|
span(v-text="scope.row.statusDescription")
|
||||||
template(v-else-if="scope.row.type === 'Bio'")
|
template(v-else-if="scope.row.type === 'Bio'")
|
||||||
el-tooltip(placement="top")
|
pre(v-text="scope.row.previousBio" style="font-family:inherit;font-size:12px;white-space:pre-wrap;margin:0 0.5em 0 0")
|
||||||
pre(v-text="scope.row.previousBio")
|
|
||||||
|
|
||||||
span
|
span
|
||||||
i.el-icon-right
|
i.el-icon-right
|
||||||
br
|
pre(v-text="scope.row.bio" style="font-family:inherit;font-size:12px;white-space:pre-wrap;margin:0 0.5em 0 0")
|
||||||
el-tooltip(placement="top")
|
|
||||||
pre(v-text="scope.row.bio")
|
|
||||||
el-table-column(label="Date" prop="created_at" sortable="custom" width="120")
|
el-table-column(label="Date" prop="created_at" sortable="custom" width="120")
|
||||||
template(v-once #default="scope")
|
template(v-once #default="scope")
|
||||||
el-tooltip(placement="right")
|
el-tooltip(placement="right")
|
||||||
@@ -424,6 +420,8 @@ html
|
|||||||
span(v-text="scope.row.statusDescription")
|
span(v-text="scope.row.statusDescription")
|
||||||
template(v-else-if="scope.row.type === 'Avatar'")
|
template(v-else-if="scope.row.type === 'Avatar'")
|
||||||
avatar-info(:imageurl="scope.row.currentAvatarImageUrl" :userid="scope.row.userId" :hintownerid="scope.row.ownerId" :hintavatarname="scope.row.avatarName")
|
avatar-info(:imageurl="scope.row.currentAvatarImageUrl" :userid="scope.row.userId" :hintownerid="scope.row.ownerId" :hintavatarname="scope.row.avatarName")
|
||||||
|
template(v-else-if="scope.row.type === 'Bio'")
|
||||||
|
span(v-text="scope.row.bio")
|
||||||
|
|
||||||
//- gameLog
|
//- gameLog
|
||||||
.x-container(v-show="$refs.menu && $refs.menu.activeIndex === 'gameLog'")
|
.x-container(v-show="$refs.menu && $refs.menu.activeIndex === 'gameLog'")
|
||||||
|
|||||||
Reference in New Issue
Block a user