Skip to content

Commit 5e211eb

Browse files
committed
Fix inbox dashboard scroll clipping
1 parent 5aa2bfd commit 5e211eb

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

resources/js/tasks/components/ParticipantHomeScreen.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@
3131

3232
<div
3333
ref="processInfo"
34-
class="tw-overflow-hidden tw-flex-1 tw-pb-4">
34+
class="tw-flex-1 tw-pb-4"
35+
:class="
36+
selectedProcess === 'inbox'
37+
? 'tw-overflow-hidden'
38+
: 'tw-overflow-auto'
39+
"
40+
>
3541
<div v-if="selectedProcess === 'inbox'">
3642
<div class="px-3 page-content mb-0">
3743
<div class="row">

0 commit comments

Comments
 (0)