style: missing semicolon

This commit is contained in:
Faris Ansari 2019-01-24 15:13:13 +05:30
parent 2b336c235c
commit 5f5ea18a72

View file

@ -401,11 +401,11 @@ frappe.ui.filter_utils = {
df.fieldtype = 'DateRange';
}
if (condition === 'is') {
df.fieldtype = 'Select'
df.fieldtype = 'Select';
df.options = [
{ label: __('Set'), value: 'set' },
{ label: __('Not Set'), value: 'not set' },
]
];
}
}
};