We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d268835 commit ee6bf65Copy full SHA for ee6bf65
ui/src/components/dynamics-form/items/upload/UploadInput.vue
@@ -1,6 +1,6 @@
1
<template>
2
<el-upload
3
- style="width: 80%"
+ style="width: 100%"
4
v-loading="loading"
5
action="#"
6
v-bind="$attrs"
@@ -62,7 +62,7 @@ function formatSize(sizeInBytes: number) {
62
}
63
64
const deleteFile = (file: any) => {
65
- if (inputDisabled) {
+ if (inputDisabled.value) {
66
return
67
68
fileArray.value = fileArray.value.filter((f: any) => f.uid != file.uid)
0 commit comments