fix(linting)

This commit is contained in:
Rushabh Mehta 2019-04-22 08:59:13 +05:30
parent ac721a6f34
commit c779ec93f6
2 changed files with 3 additions and 2 deletions

View file

@ -121,7 +121,7 @@ export default class GridRow {
move() {
// promopt the user where they want to move this row
var me = this;
var dialog = frappe.prompt({
frappe.prompt({
fieldname: 'move_to',
label: __('Move to Row Number'),
fieldtype: 'Int',

View file

@ -260,7 +260,8 @@ frappe.views.ReportView = frappe.ui.BaseList.extend({
return {
doctype: this.doctype,
fields: $.map(this.columns || [], function(v) {
return me.get_full_column_name(v); }),
return me.get_full_column_name(v);
}),
order_by: this.get_order_by(),
add_total_row: this.add_total_row,
filters: filters,