Merge pull request #7876 from Budibase/fix/hide-disabled-attachment-dropzone

Fix/hide disabled attachment dropzone
This commit is contained in:
deanhannigan 2022-09-22 09:01:16 +01:00 committed by GitHub
commit 7f845210c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -65,6 +65,9 @@
}
}
$: showDropzone =
(!maximum || (maximum && value?.length < maximum)) && !disabled
async function processFileList(fileList) {
if (
handleFileTooLarge &&
@ -211,7 +214,7 @@
{/each}
{/if}
{/if}
{#if !maximum || (maximum && value?.length < maximum)}
{#if showDropzone}
<div
class="spectrum-Dropzone"
class:is-invalid={!!error}