From 403d97e8175a75548cacf4edfb4bfdc22185a8eb Mon Sep 17 00:00:00 2001 From: Rodrigo Quelca Date: Tue, 11 Jun 2024 00:13:08 -0400 Subject: [PATCH] clean code --- src/mixins/computedFields.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mixins/computedFields.js b/src/mixins/computedFields.js index 3bd5e114c..4724c62df 100644 --- a/src/mixins/computedFields.js +++ b/src/mixins/computedFields.js @@ -9,7 +9,6 @@ export default { // Monitor if variable belongs to data (defined variables) or // vdata (external variables)in this way the event is not // executed again when the variable is update - console.log('start, evaluateExpression!'); const data = this.getDataReference(null, () => { throw new Error( "You are not allowed to set properties from inside an expression" @@ -29,7 +28,6 @@ export default { if (value instanceof Date) { value = value.toISOString(); } - console.log('end-evaluateExpression!'); return value; } catch (error) { // Catch any errors and return them