Fix lint (again)

This commit is contained in:
Jai A
2023-03-30 15:56:19 -07:00
parent c66382d2a4
commit 446f6eba68
13 changed files with 290 additions and 307 deletions

View File

@@ -1,8 +1,8 @@
<script setup>
import {ChevronLeftIcon, ChevronRightIcon} from 'omorphia'
import { ChevronLeftIcon, ChevronRightIcon } from 'omorphia'
import Instance from '@/components/ui/Instance.vue'
import News from '@/components/ui/News.vue'
import {onMounted, onUnmounted, ref} from 'vue'
import { onMounted, onUnmounted, ref } from 'vue'
const props = defineProps({
instances: {
@@ -61,23 +61,23 @@ const handleRightPage = () => {
<div class="row">
<div class="header">
<p>{{ props.label }}</p>
<hr aria-hidden="true"/>
<hr aria-hidden="true" />
<div v-if="allowPagination" class="pagination">
<ChevronLeftIcon @click="handleLeftPage"/>
<ChevronRightIcon @click="handleRightPage"/>
<ChevronLeftIcon @click="handleLeftPage" />
<ChevronRightIcon @click="handleRightPage" />
</div>
</div>
<section v-if="shouldRenderNormalInstances" ref="modsRow" class="instances">
<Instance
v-for="instance in props.instances"
:key="instance.id"
display="card"
:instance="instance"
class="row-instance"
v-for="instance in props.instances"
:key="instance.id"
display="card"
:instance="instance"
class="row-instance"
/>
</section>
<section ref="newsRow" class="news" v-else-if="shouldRenderNews">
<News v-for="news in props.news" :key="news.id" :news="news"/>
<section v-else-if="shouldRenderNews" ref="newsRow" class="news">
<News v-for="actualNews in props.news" :key="actualNews.id" :news="actualNews" />
</section>
</div>
</template>
@@ -184,4 +184,4 @@ const handleRightPage = () => {
min-width: 12rem;
max-width: 12rem;
}
</style>
</style>