fix: lint
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2021-12-20 22:08:18 +01:00
parent 33158167d5
commit b85df38245
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 9 additions and 6 deletions

View File

@ -34,7 +34,7 @@
</template>
<script lang="ts" setup>
import {computed, ref, watch} from 'vue'
import {ref, watch} from 'vue'
import {useStore} from 'vuex'
import ListService from '@/services/list'

View File

@ -35,8 +35,9 @@
v-model="backgroundSearchTerm"
/>
<p class="unsplash-link">
<a href="https://unsplash.com" rel="noreferrer noopener nofollow"
target="_blank">{{ $t('list.background.poweredByUnsplash') }}</a>
<a href="https://unsplash.com" rel="noreferrer noopener nofollow" target="_blank">
{{ $t('list.background.poweredByUnsplash') }}
</a>
</p>
<div class="image-search-result">
<a
@ -48,8 +49,11 @@
<transition name="fade">
<img :src="backgroundThumbs[im.id]" alt="" v-if="backgroundThumbs[im.id]"/>
</transition>
<a :href="`https://unsplash.com/@${im.info.author}`" rel="noreferrer noopener nofollow"
target="_blank" class="info">
<a
:href="`https://unsplash.com/@${im.info.author}`"
rel="noreferrer noopener nofollow"
target="_blank"
class="info">
{{ im.info.authorName }}
</a>
</a>
@ -70,7 +74,6 @@
<script>
import {mapState} from 'vuex'
import {decode} from 'blurhash'
import {getBlobFromBlurHash} from '../../../helpers/getBlobFromBlurHash'
import BackgroundUnsplashService from '../../../services/backgroundUnsplash'