Quellcode durchsuchen

Fidex UI glitch

master
Massimo vor 5 Jahren
Ursprung
Commit
e955eae3af
3 geänderte Dateien mit 7 neuen und 2 gelöschten Zeilen
  1. +4
    -0
      CHANGELOG.md
  2. +2
    -1
      boolean-logic-ultimate/BooleanLogicUltimate.html
  3. +1
    -1
      package.json

+ 4
- 0
CHANGELOG.md Datei anzeigen

@@ -1,5 +1,9 @@
# node-red-contrib-boolean-logic-ultimate
<p>
<b>Version 1.0.2</b><br/>
- Added "trigger mode" option (fixed UI glitch)<br/>
</p>
<p>
<b>Version 1.0.1</b><br/>
- Added "trigger mode" option<br/>
</p>

+ 2
- 1
boolean-logic-ultimate/BooleanLogicUltimate.html Datei anzeigen

@@ -56,7 +56,8 @@
function() {
let label = "";
let filtered=this.filtertrue=="both" ? "" : " |TRUE" ;
let trigger=this.outputtriggeredby=="all" ? "" : " |TRIG:" + this.triggertopic;
let trigger="";
if(typeof this.outputtriggeredby !== "undefined") trigger=this.outputtriggeredby=="all" ? "" : " |TRIG:" + this.triggertopic;
label= this.inputCount + ((filtered+trigger)==""?" Boolean Logic":(filtered+trigger));
if( this.name !== undefined && this.name.length > 0 ) {
label += " (" + this.name + ")";

+ 1
- 1
package.json Datei anzeigen

@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-boolean-logic-ultimate",
"version": "1.0.1",
"version": "1.0.2",
"description": "A set of Node-RED enhanced boolean logic, with persisten values after reboot and more",
"author": "Supergiovane (https://github.com/Supergiovane)",
"dependencies": {

Laden…
Abbrechen
Speichern