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
|
// allow debugger during development
|
||||||
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||||||
'vue/require-prop-types': 0,
|
'vue/require-prop-types': 0,
|
||||||
'vue/no-unused-vars': 0
|
'vue/no-unused-vars': 0,
|
||||||
|
'no-tabs': 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
&.-you {
|
&.-you {
|
||||||
& .shortName,
|
& .shortName,
|
||||||
& .full {
|
& .full {
|
||||||
font-weight: 600;
|
//font-weight: 600;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,11 +23,7 @@
|
||||||
@click.prevent="onClick"
|
@click.prevent="onClick"
|
||||||
>
|
>
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
<FAIcon
|
<span class="shortName">@<span
|
||||||
size="sm"
|
|
||||||
icon="at"
|
|
||||||
class="at"
|
|
||||||
/><span class="shortName"><span
|
|
||||||
class="userName"
|
class="userName"
|
||||||
v-html="userName"
|
v-html="userName"
|
||||||
/></span>
|
/></span>
|
||||||
|
|
|
@ -126,6 +126,7 @@ const PostStatusForm = {
|
||||||
newStatus: {
|
newStatus: {
|
||||||
spoilerText: this.subject || '',
|
spoilerText: this.subject || '',
|
||||||
status: statusText,
|
status: statusText,
|
||||||
|
sensitiveIfSubject,
|
||||||
nsfw: !!sensitiveByDefault,
|
nsfw: !!sensitiveByDefault,
|
||||||
files: [],
|
files: [],
|
||||||
poll: {},
|
poll: {},
|
||||||
|
|
|
@ -51,7 +51,7 @@ const ScopeSelector = {
|
||||||
unlisted: { selected: this.currentScope === 'unlisted' },
|
unlisted: { selected: this.currentScope === 'unlisted' },
|
||||||
private: { selected: this.currentScope === 'private' },
|
private: { selected: this.currentScope === 'private' },
|
||||||
direct: { selected: this.currentScope === 'direct' },
|
direct: { selected: this.currentScope === 'direct' },
|
||||||
local: { selected: this.currentScope === 'local' }
|
local: { selected: this.currentScope === 'local' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -298,7 +298,7 @@ const Status = {
|
||||||
case 'direct':
|
case 'direct':
|
||||||
return 'envelope'
|
return 'envelope'
|
||||||
case 'local':
|
case 'local':
|
||||||
return "users"
|
return 'users'
|
||||||
default:
|
default:
|
||||||
return 'globe'
|
return 'globe'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue