fix: 🐛 need MkA

This commit is contained in:
ThatOneCalculator 2022-08-16 23:43:24 -07:00
parent d6e92616be
commit 5d8f695206
3 changed files with 51 additions and 48 deletions

View file

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.118.1-calc.6.6",
"version": "12.118.1-calc.6.7",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -45,6 +45,7 @@ const toggle = () => {
width: 90%;
border-radius: 10px;
margin-top: 10px;
margin-bottom: 10px;
transition: background-color 0.25s ease-in-out;
&:hover {

View file

@ -46,8 +46,9 @@
<MkInstanceTicker v-if="showTicker" class="ticker" :instance="appearNote.user.instance"/>
</div>
</header>
<MkA class="created-at" :to="notePage(appearNote)">
<div class="main">
<div class="body" :to="notePage(appearNote)">
<div class="body">
<p v-if="appearNote.cw != null" class="cw">
<Mfm v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/>
<XCwButton v-model="showContent" :note="appearNote"/>
@ -76,7 +77,7 @@
</div>
<footer class="footer">
<div class="info">
<MkA class="created-at">
<MkA class="created-at" :to="notePage(appearNote)">
<MkTime :time="appearNote.createdAt" mode="detail"/>
</MkA>
</div>
@ -98,6 +99,7 @@
</button>
</footer>
</div>
</MkA>
</article>
<MkNoteSub v-for="note in directReplies" :key="note.id" :note="note" class="reply" :conversation="replies"/>
</div>