Skip to content

Commit

Permalink
fix: fix missing idState
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Jun 24, 2021
1 parent d963c4b commit 2948edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/pages/posts/post/Post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<!-- Action bar -->
<div class="flex items-center bg-darkGray-100 justify-evenly">
<!-- Saucenao -->
<template v-if="!error.show">
<template v-if="!idState.error.show">
<template v-if="!isVideo">
<PostSaucenao :media-url="mediaResolutionChooser.url" />
</template>
Expand Down Expand Up @@ -273,7 +273,7 @@ export default {
async retryToLoadManager(event) {
// console.log('Media source: ', event.target.src)
if (this.showError) {
if (this.idState.error.show) {
const message = 'An error is set.'
console.warn(message)
Expand Down

0 comments on commit 2948edd

Please sign in to comment.