Compare commits

...

4 commits

4 changed files with 16 additions and 9 deletions

View file

@ -130,11 +130,11 @@ export default {
codeblocks.forEach((pre) => { codeblocks.forEach((pre) => {
content = content.replace(pre, content = content.replace(pre,
pre.replaceAll('<br/>', '\n') pre.replaceAll('<br/>', '\n')
.replaceAll('&amp;', '&') .replaceAll('&amp;', '&')
.replaceAll('&lt;', '<') .replaceAll('&lt;', '<')
.replaceAll('&gt;', '>') .replaceAll('&gt;', '>')
.replaceAll('&quot', '"') .replaceAll('&quot', '"')
.replaceAll('&#39;', "'") .replaceAll('&#39;', "'")
) )
}) })
} }

View file

@ -1,4 +1,4 @@
import { filter, trim } from 'lodash' import { filter, trim, debounce } from 'lodash'
import BooleanSetting from '../helpers/boolean_setting.vue' import BooleanSetting from '../helpers/boolean_setting.vue'
import ChoiceSetting from '../helpers/choice_setting.vue' import ChoiceSetting from '../helpers/choice_setting.vue'
import IntegerSetting from '../helpers/integer_setting.vue' import IntegerSetting from '../helpers/integer_setting.vue'
@ -27,13 +27,13 @@ const FilteringTab = {
get () { get () {
return this.muteWordsStringLocal return this.muteWordsStringLocal
}, },
set (value) { set: debounce(function (value) {
this.muteWordsStringLocal = value this.muteWordsStringLocal = value
this.$store.dispatch('setOption', { this.$store.dispatch('setOption', {
name: 'muteWords', name: 'muteWords',
value: filter(value.split('\n'), (word) => trim(word).length > 0) value: filter(value.split('\n'), (word) => trim(word).length > 0)
}) })
} }, 500)
} }
}, },
// Updating nested properties // Updating nested properties

View file

@ -1,7 +1,7 @@
<template> <template>
<div <div
class="StatusBody" class="StatusBody"
:class="{ '-compact': compact }" :class="{ '-compact': compact, 'mfm-disabled': !renderMisskeyMarkdown }"
> >
<div class="body"> <div class="body">
<div <div

View file

@ -82,9 +82,16 @@
} }
} }
&.mfm-disabled { &.mfm-disabled {
span {
font-size: 100% !important;
}
.mfm { .mfm {
animation: none !important; animation: none !important;
} }
.emoji {
width: 32px !important;
height: 32px !important;
}
} }
} }