forked from frappe/frappe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: format JS files with prettier
- Loading branch information
Showing
560 changed files
with
26,351 additions
and
23,466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
export default { | ||
name: 'Custom Submittable DocType', | ||
name: "Custom Submittable DocType", | ||
custom: 1, | ||
actions: [], | ||
is_submittable: 1, | ||
creation: '2019-12-10 06:29:07.215072', | ||
doctype: 'DocType', | ||
creation: "2019-12-10 06:29:07.215072", | ||
doctype: "DocType", | ||
editable_grid: 1, | ||
engine: 'InnoDB', | ||
engine: "InnoDB", | ||
fields: [ | ||
{ | ||
fieldname: 'enabled', | ||
fieldtype: 'Check', | ||
label: 'Enabled', | ||
fieldname: "enabled", | ||
fieldtype: "Check", | ||
label: "Enabled", | ||
allow_on_submit: 1, | ||
reqd: 1 | ||
reqd: 1, | ||
}, | ||
{ | ||
fieldname: 'title', | ||
fieldtype: 'Data', | ||
label: 'title', | ||
reqd: 1 | ||
fieldname: "title", | ||
fieldtype: "Data", | ||
label: "title", | ||
reqd: 1, | ||
}, | ||
{ | ||
fieldname: 'description', | ||
fieldtype: 'Text Editor', | ||
label: 'Description' | ||
} | ||
fieldname: "description", | ||
fieldtype: "Text Editor", | ||
label: "Description", | ||
}, | ||
], | ||
links: [], | ||
modified: '2019-12-10 14:40:53.127615', | ||
modified_by: 'Administrator', | ||
module: 'Custom', | ||
owner: 'Administrator', | ||
modified: "2019-12-10 14:40:53.127615", | ||
modified_by: "Administrator", | ||
module: "Custom", | ||
owner: "Administrator", | ||
permissions: [ | ||
{ | ||
create: 1, | ||
delete: 1, | ||
email: 1, | ||
print: 1, | ||
read: 1, | ||
role: 'System Manager', | ||
role: "System Manager", | ||
share: 1, | ||
write: 1, | ||
submit: 1, | ||
cancel: 1 | ||
} | ||
cancel: 1, | ||
}, | ||
], | ||
quick_entry: 1, | ||
sort_field: 'modified', | ||
sort_order: 'ASC', | ||
track_changes: 1 | ||
}; | ||
sort_field: "modified", | ||
sort_order: "ASC", | ||
track_changes: 1, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
export default { | ||
name: 'Validation Test', | ||
name: "Validation Test", | ||
custom: 1, | ||
actions: [], | ||
creation: '2019-03-15 06:29:07.215072', | ||
doctype: 'DocType', | ||
creation: "2019-03-15 06:29:07.215072", | ||
doctype: "DocType", | ||
editable_grid: 1, | ||
engine: 'InnoDB', | ||
engine: "InnoDB", | ||
fields: [ | ||
{ | ||
fieldname: 'email', | ||
fieldtype: 'Data', | ||
label: 'Email', | ||
options: 'Email' | ||
fieldname: "email", | ||
fieldtype: "Data", | ||
label: "Email", | ||
options: "Email", | ||
}, | ||
{ | ||
fieldname: 'URL', | ||
fieldtype: 'Data', | ||
label: 'URL', | ||
options: 'URL' | ||
fieldname: "URL", | ||
fieldtype: "Data", | ||
label: "URL", | ||
options: "URL", | ||
}, | ||
{ | ||
fieldname: 'Phone', | ||
fieldtype: 'Data', | ||
label: 'Phone', | ||
options: 'Phone' | ||
fieldname: "Phone", | ||
fieldtype: "Data", | ||
label: "Phone", | ||
options: "Phone", | ||
}, | ||
{ | ||
fieldname: 'person_name', | ||
fieldtype: 'Data', | ||
label: 'Person Name', | ||
options: 'Name' | ||
fieldname: "person_name", | ||
fieldtype: "Data", | ||
label: "Person Name", | ||
options: "Name", | ||
}, | ||
{ | ||
fieldname: 'read_only_url', | ||
fieldtype: 'Data', | ||
label: 'Read Only URL', | ||
options: 'URL', | ||
read_only: '1', | ||
default: 'https://frappe.io' | ||
} | ||
fieldname: "read_only_url", | ||
fieldtype: "Data", | ||
label: "Read Only URL", | ||
options: "URL", | ||
read_only: "1", | ||
default: "https://frappe.io", | ||
}, | ||
], | ||
issingle: 1, | ||
links: [], | ||
modified: '2021-04-19 14:40:53.127615', | ||
modified_by: 'Administrator', | ||
module: 'Custom', | ||
owner: 'Administrator', | ||
modified: "2021-04-19 14:40:53.127615", | ||
modified_by: "Administrator", | ||
module: "Custom", | ||
owner: "Administrator", | ||
permissions: [ | ||
{ | ||
create: 1, | ||
delete: 1, | ||
email: 1, | ||
print: 1, | ||
read: 1, | ||
role: 'System Manager', | ||
role: "System Manager", | ||
share: 1, | ||
write: 1 | ||
} | ||
write: 1, | ||
}, | ||
], | ||
quick_entry: 1, | ||
sort_field: 'modified', | ||
sort_order: 'ASC', | ||
track_changes: 1 | ||
sort_field: "modified", | ||
sort_order: "ASC", | ||
track_changes: 1, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
export default { | ||
name: 'DateTime Test', | ||
name: "DateTime Test", | ||
custom: 1, | ||
actions: [], | ||
creation: '2019-03-15 06:29:07.215072', | ||
doctype: 'DocType', | ||
creation: "2019-03-15 06:29:07.215072", | ||
doctype: "DocType", | ||
editable_grid: 1, | ||
engine: 'InnoDB', | ||
engine: "InnoDB", | ||
fields: [ | ||
{ | ||
fieldname: 'date', | ||
fieldtype: 'Date', | ||
label: 'Date' | ||
fieldname: "date", | ||
fieldtype: "Date", | ||
label: "Date", | ||
}, | ||
{ | ||
fieldname: 'time', | ||
fieldtype: 'Time', | ||
label: 'Time' | ||
fieldname: "time", | ||
fieldtype: "Time", | ||
label: "Time", | ||
}, | ||
{ | ||
fieldname: 'datetime', | ||
fieldtype: 'Datetime', | ||
label: 'Datetime' | ||
} | ||
fieldname: "datetime", | ||
fieldtype: "Datetime", | ||
label: "Datetime", | ||
}, | ||
], | ||
issingle: 1, | ||
links: [], | ||
modified: '2019-12-09 14:40:53.127615', | ||
modified_by: 'Administrator', | ||
module: 'Custom', | ||
owner: 'Administrator', | ||
modified: "2019-12-09 14:40:53.127615", | ||
modified_by: "Administrator", | ||
module: "Custom", | ||
owner: "Administrator", | ||
permissions: [ | ||
{ | ||
create: 1, | ||
delete: 1, | ||
email: 1, | ||
print: 1, | ||
read: 1, | ||
role: 'System Manager', | ||
role: "System Manager", | ||
share: 1, | ||
write: 1 | ||
} | ||
write: 1, | ||
}, | ||
], | ||
quick_entry: 1, | ||
sort_field: 'modified', | ||
sort_order: 'ASC', | ||
track_changes: 1 | ||
sort_field: "modified", | ||
sort_order: "ASC", | ||
track_changes: 1, | ||
}; |
Oops, something went wrong.