Explorar el Código

Node nale shows "f" when "filter true" is selected and "t" (triggername) when "trigger only by single topic" is selected.

master
Massimo hace 5 años
padre
commit
255e7d1e6d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      boolean-logic-ultimate/BooleanLogicUltimate.html

+ 1
- 1
boolean-logic-ultimate/BooleanLogicUltimate.html Ver fichero

@@ -56,7 +56,7 @@
label:
function() {
let label = "";
let filtered=this.filtertrue=="both" ? "" : " f" ;
let filtered=this.filtertrue=="both" ? "" : "f" ;
let trigger="";
if(typeof this.outputtriggeredby !== "undefined") trigger=this.outputtriggeredby=="all" ? "" : "t (" + this.triggertopic+")";
label= this.inputCount + ((filtered+trigger)==""?" Boolean Logic":(filtered+trigger));

Cargando…
Cancelar
Guardar