chore: Remove the unnecessary error log from the derived property function (#17290)
This commit is contained in:
parent
853a2e6574
commit
2aaa413d6d
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user