fix: Missing semicolon

This commit is contained in:
Faris Ansari 2019-04-11 10:36:22 +05:30
parent 7fbe08b0bc
commit 8ff5c75d33
3 changed files with 3 additions and 3 deletions

View file

@ -3,6 +3,6 @@
frappe.ui.form.on('Feature Flags', {
refresh: function(frm) {
frm.set_intro(__('Enable experimental features. These features may be removed before they end up in the core.'))
frm.set_intro(__('Enable experimental features. These features may be removed before they end up in the core.'));
}
});

View file

@ -1,4 +1,4 @@
import FileUploaderComponent from './FileUploader.vue'
import FileUploaderComponent from './FileUploader.vue';
export default class FileUploader {
constructor({ wrapper, method, on_success, doctype, docname, files, folder } = {}) {

View file

@ -1,7 +1,7 @@
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
// MIT License. See license.txt
import FileUploader from './file_uploader'
import FileUploader from './file_uploader';
frappe.provide('frappe.ui');
frappe.ui.FileUploader = FileUploader;