diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-component.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-component.vue
index fb312c97..de8fae8a 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-component.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-component.vue
@@ -12,12 +12,24 @@
-
+
-
+
{{value.label | localize(value.label)}}
@@ -43,6 +56,7 @@
height="26"
x="0"
y="44"
+ v-if="!ganttOptions.printing"
>
{{value.estimatedDuration | round(1)}}s
@@ -145,6 +159,7 @@
@@ -156,6 +171,7 @@
y="-5"
height="10"
:x="Math.max(actualDelay * ganttOptions.secondSize -30,0)"
+ v-if="!ganttOptions.printing"
>
{{value.actualDelay | round(1)}}
@@ -174,6 +190,7 @@
y="-5"
height="10"
:x="Math.max(actualDuration * ganttOptions.secondSize -30,0)"
+ v-if="!ganttOptions.printing"
>
{{value.actualDuration | round(1)}}
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-row.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-row.vue
index 5094f043..4a89340e 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-row.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/gantt/gantt-row.vue
@@ -20,7 +20,7 @@
-
+
diff --git a/Thermo.Active/wwwroot/src/services/hub.ts b/Thermo.Active/wwwroot/src/services/hub.ts
index 6d7c1dd9..305ce93d 100644
--- a/Thermo.Active/wwwroot/src/services/hub.ts
+++ b/Thermo.Active/wwwroot/src/services/hub.ts
@@ -209,6 +209,7 @@ export class Hub {
private static gaugeData(data) {
+ console.log('gaugedata', data)
machineStatusActions.setGauge(store, data);
}