Skip to content

Commit

Permalink
Merge pull request #483 from saltykheera/changebykheera
Browse files Browse the repository at this point in the history
fix(heuristics): heuristic items are not properly aligned on vertical…  ISSUE #480
  • Loading branch information
jvJUCA authored Jun 5, 2024
2 parents 28059d7 + 3f14046 commit a5628a8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/molecules/HeuristicsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,7 @@
</v-btn>
</v-list-item-action>
</div>
<v-list-item-icon
v-if="i == itemSelect"
class="mt-2 mb-2"
>
<v-list-item-icon v-if="i == itemSelect" class="pt-4">
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down Expand Up @@ -406,9 +403,11 @@
:key="i"
>
<v-list-item-content>
<v-list-item-title>{{ item.title }}</v-list-item-title>
<v-list-item-title class="py-3">{{
item.title
}}</v-list-item-title>
</v-list-item-content>
<v-list-item-icon v-if="i == questionSelect">
<v-list-item-icon v-if="i == questionSelect" class="pt-4">
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down

0 comments on commit a5628a8

Please sign in to comment.