Skip to content
Snippets Groups Projects
Commit 2506dca9 authored by Titus Netland's avatar Titus Netland
Browse files

Fixed search items view

parent a99481f5
No related branches found
No related tags found
1 merge request!166Fixed search items view
Pipeline #182708 passed
......@@ -55,7 +55,7 @@
<!-- Shows items based on search field input -->
<div
class="grid grid-flow-row-dense grid-cols-2 md:grid-cols-4 lg:grid-cols-5 w-full place-items-center"
class="grid grid-flow-row-dense grid-cols-2 md:grid-cols-4 lg:grid-cols-5 w-full"
v-if="showSearchedItems"
>
<ItemCard
......
......@@ -111,10 +111,15 @@
<!-- Shows items based on search field input -->
<div
class="grid grid-flow-row-dense grid-cols-2 md:grid-cols-4 lg:grid-cols-5 w-full place-items-center"
class="grid grid-flow-row-dense grid-cols-2 md:grid-cols-4 lg:grid-cols-5 w-full"
v-if="showSearchedItems"
>
<div class="cardContainer" v-for="item in searchedItems" :key="item">
<div
class="cardContainer"
id="item"
v-for="item in searchedItems"
:key="item"
>
<div class="w-full">
<ItemCard
id="ItemCardSearch"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment