Skip to content

Commit 4a2bc20

Browse files
committed
only apply h-full in the asset selector
1 parent 3d23447 commit 4a2bc20

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

resources/js/components/assets/Selector.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<Uploader
33
ref="uploader"
4+
class="*:h-full"
45
:container="container.id"
56
:path="currentPath"
67
:enabled="container.can_upload"

resources/js/components/assets/Uploader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default {
3030
...events,
3131
},
3232
[
33-
h('div', { class: ['h-full', { 'pointer-events-none': this.dragging }] }, [
33+
h('div', { class: { 'pointer-events-none': this.dragging } }, [
3434
fileField,
3535
...this.$slots.default({ dragging: this.enabled ? this.dragging : false }),
3636
]),

0 commit comments

Comments
 (0)