mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-09 10:13:42 +00:00
remove svg
This commit is contained in:
parent
b141b04a53
commit
238ebcf1e4
6 changed files with 7 additions and 9 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
&.-you {
|
||||
& .shortName,
|
||||
& .full {
|
||||
font-weight: 600;
|
||||
//font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -126,6 +126,7 @@ const PostStatusForm = {
|
|||
newStatus: {
|
||||
spoilerText: this.subject || '',
|
||||
status: statusText,
|
||||
sensitiveIfSubject,
|
||||
nsfw: !!sensitiveByDefault,
|
||||
files: [],
|
||||
poll: {},
|
||||
|
|
|
@ -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' }
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -298,7 +298,7 @@ const Status = {
|
|||
case 'direct':
|
||||
return 'envelope'
|
||||
case 'local':
|
||||
return "users"
|
||||
return 'users'
|
||||
default:
|
||||
return 'globe'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue