Fixed node not showing up in pallete.

This commit is contained in:
2025-06-12 12:52:32 +02:00
parent 49334f59e9
commit 2182bed343
2 changed files with 8 additions and 3 deletions

26
advanced-reactor.html Normal file
View File

@@ -0,0 +1,26 @@
<script type="text/javascript">
RED.nodes.registerType("advanced-reactor", {
category: 'WWTP',
color: '#c4cce0',
defaults: {
name: {value:""}
},
inputs: 1,
outputs: 1,
icon: "font-awesome/fa-recycle",
label: function() {
return this.name||"advanced-reactor";
}
});
</script>
<script type="text/html" data-template-name="advanced-reactor">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/html" data-help-name="advanced-reactor">
<p>New reactor node</p>
</script>