chore: Remove the unnecessary error log from the derived property function (#17290)

This commit is contained in:
balajisoundar 2022-10-04 17:08:02 +05:30 committed by GitHub
parent 853a2e6574
commit 2aaa413d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,3 @@
/* eslint-disable no-console */
/* eslint-disable @typescript-eslint/no-unused-vars*/
export default {
getSelectedRow: (props, moment, _) => {
@ -288,11 +286,7 @@ export default {
try {
computedValues = JSON.parse(column.computedValue);
} catch (e) {
console.error(
e,
"Error parsing column computedValue: ",
column.computedValue,
);
/* do nothing */
}
} else if (_.isArray(column.computedValue)) {
computedValues = column.computedValue;