Rerun script

This commit is contained in:
Pieter Vander Vennet 2021-12-10 15:55:48 +01:00
parent 3958290824
commit 021c0a8e34
2 changed files with 14 additions and 29 deletions

View file

@ -178,8 +178,7 @@
"if": { "if": {
"and": [ "and": [
"socket:schuko~*", "socket:schuko~*",
"socket:schuko!=1", "socket:schuko!=1"
""
] ]
}, },
"then": { "then": {
@ -200,8 +199,7 @@
"if": { "if": {
"and": [ "and": [
"socket:typee~*", "socket:typee~*",
"socket:typee!=1", "socket:typee!=1"
""
] ]
}, },
"then": { "then": {
@ -248,8 +246,7 @@
"if": { "if": {
"and": [ "and": [
"socket:chademo~*", "socket:chademo~*",
"socket:chademo!=1", "socket:chademo!=1"
""
] ]
}, },
"then": { "then": {
@ -296,8 +293,7 @@
"if": { "if": {
"and": [ "and": [
"socket:type1_cable~*", "socket:type1_cable~*",
"socket:type1_cable!=1", "socket:type1_cable!=1"
""
] ]
}, },
"then": { "then": {
@ -344,8 +340,7 @@
"if": { "if": {
"and": [ "and": [
"socket:type1~*", "socket:type1~*",
"socket:type1!=1", "socket:type1!=1"
""
] ]
}, },
"then": { "then": {
@ -392,8 +387,7 @@
"if": { "if": {
"and": [ "and": [
"socket:type1_combo~*", "socket:type1_combo~*",
"socket:type1_combo!=1", "socket:type1_combo!=1"
""
] ]
}, },
"then": { "then": {
@ -440,8 +434,7 @@
"if": { "if": {
"and": [ "and": [
"socket:tesla_supercharger~*", "socket:tesla_supercharger~*",
"socket:tesla_supercharger!=1", "socket:tesla_supercharger!=1"
""
] ]
}, },
"then": { "then": {
@ -488,8 +481,7 @@
"if": { "if": {
"and": [ "and": [
"socket:type2~*", "socket:type2~*",
"socket:type2!=1", "socket:type2!=1"
""
] ]
}, },
"then": { "then": {
@ -536,8 +528,7 @@
"if": { "if": {
"and": [ "and": [
"socket:type2_combo~*", "socket:type2_combo~*",
"socket:type2_combo!=1", "socket:type2_combo!=1"
""
] ]
}, },
"then": { "then": {
@ -584,8 +575,7 @@
"if": { "if": {
"and": [ "and": [
"socket:type2_cable~*", "socket:type2_cable~*",
"socket:type2_cable!=1", "socket:type2_cable!=1"
""
] ]
}, },
"then": { "then": {
@ -632,8 +622,7 @@
"if": { "if": {
"and": [ "and": [
"socket:tesla_supercharger_ccs~*", "socket:tesla_supercharger_ccs~*",
"socket:tesla_supercharger_ccs!=1", "socket:tesla_supercharger_ccs!=1"
""
] ]
}, },
"then": { "then": {
@ -760,8 +749,7 @@
"if": { "if": {
"and": [ "and": [
"socket:USB-A~*", "socket:USB-A~*",
"socket:USB-A!=1", "socket:USB-A!=1"
""
] ]
}, },
"then": { "then": {
@ -804,8 +792,7 @@
"if": { "if": {
"and": [ "and": [
"socket:bosch_3pin~*", "socket:bosch_3pin~*",
"socket:bosch_3pin!=1", "socket:bosch_3pin!=1"
""
] ]
}, },
"then": { "then": {
@ -848,8 +835,7 @@
"if": { "if": {
"and": [ "and": [
"socket:bosch_5pin~*", "socket:bosch_5pin~*",
"socket:bosch_5pin!=1", "socket:bosch_5pin!=1"
""
] ]
}, },
"then": { "then": {

View file

@ -3,7 +3,6 @@ import {Utils} from "../../../Utils";
import {TagRenderingConfigJson} from "../../../Models/ThemeConfig/Json/TagRenderingConfigJson"; import {TagRenderingConfigJson} from "../../../Models/ThemeConfig/Json/TagRenderingConfigJson";
import ScriptUtils from "../../../scripts/ScriptUtils"; import ScriptUtils from "../../../scripts/ScriptUtils";
import {LayerConfigJson} from "../../../Models/ThemeConfig/Json/LayerConfigJson"; import {LayerConfigJson} from "../../../Models/ThemeConfig/Json/LayerConfigJson";
import {TagsFilter} from "../../../Logic/Tags/TagsFilter";
function colonSplit(value: string): string[] { function colonSplit(value: string): string[] {