Compare commits

..

3 Commits

Author SHA1 Message Date
znetsixe
c99a93f73b removed error inducing module deprecated 2025-11-13 19:38:09 +01:00
znetsixe
5f1dd7675c dashboard update S88 2025-10-14 14:08:41 +02:00
znetsixe
b66e014a46 updated 2025-09-22 16:04:19 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
<script type="module">
import * as menuUtils from "/generalFunctions/helper/menuUtils.js";
//import * as menuUtils from "/generalfunctions/helper/menuUtils.js";
RED.nodes.registerType('dashboardapi', {
category: 'wbd typical',
@@ -18,7 +18,7 @@
outputs: 1,
inputLabels: "Usage see manual",
outputLabels: ["feedback"],
icon: "font-awesome/fa-line-chart",
icon: "font-awesome/fa-area-chart",
label: function () {
// Show the name

View File

@@ -47,14 +47,14 @@
//load local dependencies
const EventEmitter = require('events');
const Logger = require('../../../generalFunctions/helper/logger');
const Logger = require('../../../generalfunctions/helper/logger');
//load all config modules
const defaultConfig = require('./dashboardapiConfig.json');
const ConfigUtils = require('../../../generalFunctions/helper/configUtils');
const ConfigUtils = require('../../../generalfunctions/helper/configUtils');
//load registration utility
const ChildRegistrationUtils = require('../../../generalFunctions/helper/childRegistrationUtils');
const ChildRegistrationUtils = require('../../../generalfunctions/helper/childRegistrationUtils');
class Dashboardapi{
/*------------------- Construct and set vars -------------------*/