Skip to content

Commit

Permalink
fixed improvied ruxailab#483
Browse files Browse the repository at this point in the history
  • Loading branch information
saltykheera committed May 27, 2024
1 parent 6b46f94 commit b99fef5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/molecules/HeuristicsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@
</template>
<template v-else>
<v-list-item
style="height: 40px ;"
v-for="(item, i) in filteredHeuristics"
:key="i"
class="pb-0 pt-0"
Expand Down Expand Up @@ -293,10 +294,7 @@
</v-btn>
</v-list-item-action>
</div>
<v-list-item-icon
v-if="i == itemSelect"
style="margin-top:15px ;"
>
<v-list-item-icon v-if="i == itemSelect">
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down Expand Up @@ -400,14 +398,14 @@
<v-divider />
<v-list dense height="470px" class="list-scroll">
<v-list-item-group v-model="questionSelect" color="#fca326">
<v-list-item style="min-height: 56px;"
<v-list-item
v-for="(item, i) in heuristics[itemSelect].questions"
:key="i"
>
<v-list-item-content>
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item-content>
<v-list-item-icon v-if="i == questionSelect" style="margin-top:15px" >
<v-list-item-icon v-if="i == questionSelect">
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down

0 comments on commit b99fef5

Please sign in to comment.