chore: 🎨 format
This commit is contained in:
parent
06fcef60a1
commit
73dcf4f8fa
4 changed files with 10 additions and 5 deletions
|
@ -226,7 +226,11 @@ export default hasConfig
|
||||||
return null;
|
return null;
|
||||||
} else if (term.startsWith("domain:")) {
|
} else if (term.startsWith("domain:")) {
|
||||||
const domain = term.slice(7);
|
const domain = term.slice(7);
|
||||||
if (domain.length === 0 || domain === "local" || domain === config.hostname) {
|
if (
|
||||||
|
domain.length === 0 ||
|
||||||
|
domain === "local" ||
|
||||||
|
domain === config.hostname
|
||||||
|
) {
|
||||||
constructedFilters.push("userHost NOT EXISTS");
|
constructedFilters.push("userHost NOT EXISTS");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,7 +106,8 @@
|
||||||
:text="'@namekuji@firefish.social (Backend)'"
|
:text="'@namekuji@firefish.social (Backend)'"
|
||||||
/></FormLink>
|
/></FormLink>
|
||||||
<FormLink to="/@dev@post.naskya.net"
|
<FormLink to="/@dev@post.naskya.net"
|
||||||
><Mfm :text="'@dev@post.naskya.net (Fullstack)'"
|
><Mfm
|
||||||
|
:text="'@dev@post.naskya.net (Fullstack)'"
|
||||||
/></FormLink>
|
/></FormLink>
|
||||||
<FormLink to="/@panos@firefish.social"
|
<FormLink to="/@panos@firefish.social"
|
||||||
><Mfm
|
><Mfm
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
<MkTime :time="announcement.createdAt" />
|
<MkTime :time="announcement.createdAt" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr class="_seperator"/>
|
<hr class="_seperator" />
|
||||||
<div class="_content">
|
<div class="_content">
|
||||||
<Mfm :text="announcement.text" />
|
<Mfm :text="announcement.text" />
|
||||||
<img
|
<img
|
||||||
|
|
Loading…
Reference in a new issue