Frontend: Fixed the note retry button
ci/woodpecker/push/ociImagePush Pipeline was successful Details

This commit is contained in:
Natty 2023-08-11 15:09:28 +02:00
parent a29cea6cbc
commit ac901161ab
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@
/>
</div>
</div>
<MkError v-else-if="error" @retry="fetch()" />
<MkError v-else-if="error" @retry="fetchNote()" />
<MkLoading v-else />
</transition>
</div>
@ -69,7 +69,7 @@
</template>
<script lang="ts" setup>
import { computed, defineComponent, watch } from "vue";
import { computed, watch } from "vue";
import * as misskey from "calckey-js";
import XNoteDetailed from "@/components/MkNoteDetailed.vue";
import XNotes from "@/components/MkNotes.vue";