fix: top aligned all batch feedback rows

This commit is contained in:
Jannat Patel
2025-02-04 11:15:39 +05:30
parent f9706f10e1
commit 3ff6c96273
5 changed files with 12 additions and 6 deletions

View File

@@ -67,7 +67,7 @@
<ListRow
:row="row"
v-for="row in feedbackList.data"
class="group cursor-pointer"
class="group cursor-pointer feedback-list"
>
<template #default="{ column, item }">
<ListRowItem
@@ -237,3 +237,9 @@ const feedbackColumns = computed(() => {
]
})
</script>
<style>
.feedback-list > button > div {
align-items: start;
padding: 0.25rem 0;
}
</style>