Skip to content

Commit

Permalink
fix: upload of file as default value fails when adding a new column (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
visualfanatic authored Oct 20, 2021
1 parent 773084c commit 6040dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dashboard/Data/Browser/AddColumnDialog.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class AddColumnDialog extends React.Component {
uploadingFile: true
});
try {
await parseFile.save();
await parseFile.save({ useMasterKey: true });
return parseFile;
} catch (err) {
this.props.showNote(err.message, true);
Expand Down

0 comments on commit 6040dd0

Please sign in to comment.