Skip to content

Commit

Permalink
UI bug fix + default value change
Browse files Browse the repository at this point in the history
  • Loading branch information
chungchunwang committed May 18, 2023
1 parent 8220a98 commit 11feffa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Budibase-File-Upload",
"version": "1.1.7",
"version": "1.1.8",
"description": "An amazing Budibase component!",
"license": "MIT",
"svelte": "index.js",
Expand Down
4 changes: 2 additions & 2 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
{
"type": "boolean",
"key": "encodingProtection",
"label": "Encoding Protection - Resolves Budibase Bug #8826 For SQL Databases - Recommended",
"label": "Encoding Protection - Recommended",
"defaultValue": true
},
{
"type": "boolean",
"key": "useBlobURL",
"label": "Use BlobURL instead of DataURL for opening files (Removes restriction for files to be opened in iFrame, which could be blocked + shorter URI - Recommended)",
"label": "Use BlobURL instead of DataURL for opening files - Recommended",
"defaultValue": true
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/Component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
$: formField = formApi?.registerField(
field,
"text",
0,
"",
disabled,
validation,
formStep
Expand Down

0 comments on commit 11feffa

Please sign in to comment.