Fix import
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
|
const Specific = require("./specificClass.js");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* node class.js
|
* node class.js
|
||||||
*
|
*
|
||||||
* Encapsulates all node logic in a reusable class. In future updates we can split this into multiple generic classes and use the config to specifiy which ones to use.
|
* Encapsulates all node logic in a reusable class. In future updates we can split this into multiple generic classes and use the config to specifiy which ones to use.
|
||||||
* This allows us to keep the Node-RED node clean and focused on wiring up the UI and event handlers.
|
* This allows us to keep the Node-RED node clean and focused on wiring up the UI and event handlers.
|
||||||
*/
|
*/
|
||||||
const Specific = require("./specificClass.js");
|
|
||||||
|
|
||||||
class nodeClass {
|
class nodeClass {
|
||||||
/**
|
/**
|
||||||
* Create a Node.
|
* Create a Node.
|
||||||
@@ -51,7 +51,7 @@ class nodeClass {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
functionality: {
|
functionality: {
|
||||||
positionVsParent: uiConfig.positionVsParent || 'atEquipment', // Default to 'atEquipment' if not specified
|
positionVsParent: uiConfig.positionVsParent || 'atEquipment' // Default to 'atEquipment' if not specified
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,4 +36,4 @@ class liquidFlowHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { liquidFlowHandler };
|
module.exports = liquidFlowHandler;
|
||||||
Reference in New Issue
Block a user