From 85bcea165f692e0fe43c0af72647b969c8f93121 Mon Sep 17 00:00:00 2001 From: sanjayk03-dev Date: Tue, 30 Jan 2024 19:02:21 +0530 Subject: [PATCH] loggin event handler --- src/js/macros.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/macros.js b/src/js/macros.js index fb84708..efa4f17 100644 --- a/src/js/macros.js +++ b/src/js/macros.js @@ -66,6 +66,7 @@ module.exports = { utils.clickFileInput("gcode-file-input"); }, updateNewGcode: function (event) { + console.log("input event fired: ", event.target.value); this.newGcode = event.target.value; this.$dispatch("macros-edited"); },