mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
bugfix
This commit is contained in:
+3
-1
@@ -621,7 +621,8 @@ CefSharp.BindObjectAsync(
|
|||||||
currentTime: new Date().toJSON(),
|
currentTime: new Date().toJSON(),
|
||||||
cpuUsage: 0,
|
cpuUsage: 0,
|
||||||
feeds: [],
|
feeds: [],
|
||||||
devices: []
|
devices: [],
|
||||||
|
isMinimalFeed: false,
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
methods: {},
|
methods: {},
|
||||||
@@ -679,6 +680,7 @@ CefSharp.BindObjectAsync(
|
|||||||
};
|
};
|
||||||
|
|
||||||
$app.methods.updateSharedFeed = function () {
|
$app.methods.updateSharedFeed = function () {
|
||||||
|
this.isMinimalFeed = VRCXStorage.GetBool('VRCX_minimalFeed');
|
||||||
// TODO: block mute hideAvatar unfriend
|
// TODO: block mute hideAvatar unfriend
|
||||||
var _feeds = this.feeds;
|
var _feeds = this.feeds;
|
||||||
this.feeds = VRCXStorage.GetArray('sharedFeeds');
|
this.feeds = VRCXStorage.GetArray('sharedFeeds');
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@ html
|
|||||||
.x-app#x-app(style="display:none" :class="{ 'x-app-type': appType === '1' }")
|
.x-app#x-app(style="display:none" :class="{ 'x-app-type': appType === '1' }")
|
||||||
.x-container(style="flex:1")
|
.x-container(style="flex:1")
|
||||||
.x-friend-list(ref="list" style="color:#aaa")
|
.x-friend-list(ref="list" style="color:#aaa")
|
||||||
template(v-if="VRCXStorage.GetBool('VRCX_minimalFeed')")
|
template(v-if="isMinimalFeed === true")
|
||||||
template(v-for="feed in feeds")
|
template(v-for="feed in feeds")
|
||||||
.x-friend-item(v-if="feed.type === 'GPS'" :class="{ friend: feed.isFriend, favorite: feed.isFavorite }")
|
.x-friend-item(v-if="feed.type === 'GPS'" :class="{ friend: feed.isFriend, favorite: feed.isFavorite }")
|
||||||
.detail
|
.detail
|
||||||
|
|||||||
Reference in New Issue
Block a user