Compare commits

...

5 commits

Author SHA1 Message Date
Henry Jameson
0a985fb7f4 Merge branch 'hj/2.7.1-fixes' into shigusegubu-themes3 2024-08-15 11:35:54 +03:00
Henry Jameson
482f353f4d make posts have highlight on higher level 2024-08-15 11:35:33 +03:00
Henry Jameson
8b87d548ac didn't work, lol 2024-08-15 01:01:31 +03:00
Henry Jameson
5ad4d82b6b try to fix gaps 2024-08-15 00:57:23 +03:00
Henry Jameson
1f50fc2a8b oops 2024-08-15 00:06:32 +03:00
2 changed files with 2 additions and 5 deletions

View file

@ -3,7 +3,8 @@
v-if="!hideStatus" v-if="!hideStatus"
ref="root" ref="root"
class="Status" class="Status"
:class="[{ '-focused': isFocused }, { '-conversation': inlineExpanded }]" :class="[{ '-focused': isFocused }, { '-conversation': inlineExpanded }, userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }]"
:style="[ userStyle ]"
> >
<div <div
v-if="error" v-if="error"
@ -120,8 +121,6 @@
<div <div
v-if="!deleted" v-if="!deleted"
:class="[userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }]"
:style="[ userStyle ]"
class="status-container" class="status-container"
:data-tags="tags" :data-tags="tags"
> >

View file

@ -374,8 +374,6 @@ const instance = {
// should have been "pack" field, that would be more useful // should have been "pack" field, that would be more useful
}).sort(byPackThenByName) }).sort(byPackThenByName)
commit('setInstanceOption', { name: 'customEmoji', value: emoji }) commit('setInstanceOption', { name: 'customEmoji', value: emoji })
state.standardEmojiGroupList = null
state.standardEmojiList = null
} else { } else {
throw (res) throw (res)
} }