File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
java/org/cerberus/core/util Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -369,6 +369,7 @@ public static String cleanHostURL(String host) {
369369 public static String cleanFromSpecialCharacters (String in ) {
370370 return in .replace (" " , SPECIAL_CHAR_REPLACEMENT )
371371 .replace ("<" , SPECIAL_CHAR_REPLACEMENT )
372+ .replace (":" , SPECIAL_CHAR_REPLACEMENT )
372373 .replace (">" , SPECIAL_CHAR_REPLACEMENT )
373374 .replace ("|" , SPECIAL_CHAR_REPLACEMENT )
374375 .replace ("/" , SPECIAL_CHAR_REPLACEMENT )
Original file line number Diff line number Diff line change @@ -1838,7 +1838,7 @@ table.dataTable thead th input {
18381838}
18391839
18401840.muted {
1841- background-color : # f8f8f8 ;
1841+ background-color : var ( --crb-grey-lighter-color ) ;
18421842}
18431843
18441844.popover {
Original file line number Diff line number Diff line change @@ -3154,7 +3154,7 @@ function comboConfigTag_format(tag) {
31543154 }
31553155 if ( tag . nbExeUsefull > 0 ) {
31563156 markup += "<div class='select2-result-tag__detail'> " + tag . nbExeUsefull + " Exe(s)</div>" ;
3157- markup += "<div class='select2-result-tag__detail " + tag . ciResult + "'> " + tag . ciResult + "</div>" ;
3157+ markup += "<div class='select2-result-tag__detail status " + tag . ciResult + "'> " + tag . ciResult + "</div>" ;
31583158 }
31593159 if ( tag . campaign ) {
31603160 markup += "<div class='select2-result-tag__detail'><i class='fa fa-list'></i> " + tag . campaign + "</div>" ;
Original file line number Diff line number Diff line change @@ -529,8 +529,8 @@ function refreshMonitorTable(dataFromWs) {
529529 indexPreviousValues [ id ] = exeId + fn ;
530530
531531 } ) ;
532- // console.info("INDEX of previous executions");
533- // console.info(indexPreviousValues);
532+ console . info ( "INDEX of previous executions" ) ;
533+ console . info ( indexPreviousValues ) ;
534534 monTable . empty ( ) ;
535535
536536// console.info(dataFromWs);
@@ -946,7 +946,7 @@ function refreshBoxTimings() {
946946 let sinceLast = new Date ( ) . getTime ( ) - ( lastPush ) ;
947947 // Stop Blinking after 30 sec
948948 if ( ( sinceLast > 30000 ) && ( item . classList . contains ( "new" ) ) ) {
949- console . info ( "remove blinking " + sinceLast + " " + item . classList ) ;
949+ console . info ( "remove blinking " + item . id + " sinceLast: " + sinceLast + " classList: " + item . classList ) ;
950950// console.info($("#" + item.id));
951951 $ ( "#" + item . id ) . removeClass ( "blinking new" ) ;
952952 }
You can’t perform that action at this time.
0 commit comments