remove svg

This commit is contained in:
sadposter 2021-11-20 14:38:01 +00:00
parent b141b04a53
commit 238ebcf1e4
6 changed files with 7 additions and 9 deletions

View File

@ -22,6 +22,7 @@ module.exports = {
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'vue/require-prop-types': 0,
'vue/no-unused-vars': 0
'vue/no-unused-vars': 0,
'no-tabs': 0
}
}

View File

@ -40,7 +40,7 @@
&.-you {
& .shortName,
& .full {
font-weight: 600;
//font-weight: 600;
}
}

View File

@ -23,11 +23,7 @@
@click.prevent="onClick"
>
<!-- eslint-disable vue/no-v-html -->
<FAIcon
size="sm"
icon="at"
class="at"
/><span class="shortName"><span
<span class="shortName">@<span
class="userName"
v-html="userName"
/></span>

View File

@ -126,6 +126,7 @@ const PostStatusForm = {
newStatus: {
spoilerText: this.subject || '',
status: statusText,
sensitiveIfSubject,
nsfw: !!sensitiveByDefault,
files: [],
poll: {},

View File

@ -51,7 +51,7 @@ const ScopeSelector = {
unlisted: { selected: this.currentScope === 'unlisted' },
private: { selected: this.currentScope === 'private' },
direct: { selected: this.currentScope === 'direct' },
local: { selected: this.currentScope === 'local' }
local: { selected: this.currentScope === 'local' }
}
}
},

View File

@ -298,7 +298,7 @@ const Status = {
case 'direct':
return 'envelope'
case 'local':
return "users"
return 'users'
default:
return 'globe'
}