Skip to content

Commit 9485f8b

Browse files
committed
remove console.log
1 parent f3c5339 commit 9485f8b

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dpsoftware/node-red-dashboard-2-ui-lcd",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Character LCD for Node-Red Dashboard 2",
55
"keywords": [
66
"node-red",

resources/ui-lcd.umd.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/components/LCD.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,10 @@ export default {
7575
7676
// Check for an array of custom characters and iterate over them
7777
if (msg.cusChars && Array.isArray(msg.cusChars)) {
78-
console.log(msg.cusChars)
7978
msg.cusChars.forEach(charObj => {
8079
const row = charObj.row || 0;
8180
const col = charObj.col || 0;
8281
const charData = charObj.char || [];
83-
84-
// Set the custom character using the provided data
85-
console.log(row)
86-
console.log(col)
87-
console.log(charData)
8882
8983
this.lcd.set(row, col, charData);
9084
});

0 commit comments

Comments
 (0)