Skip to content

Commit 7017604

Browse files
committed
Fix #422 fieldUpload event throws ReferenceError in Firefox
1 parent 6b479fb commit 7017604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fields/core/fieldUpload.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { isFunction } from "lodash";
2020
export default {
2121
mixins: [abstractField],
2222
methods: {
23-
onChange(){
23+
onChange(event){
2424
if(isFunction(this.schema.onChanged)){
2525
// Schema has defined onChange method.
2626
this.schema.onChanged.call(this, this.model, this.schema, event, this);

0 commit comments

Comments
 (0)