diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/sotto-cofano/LogMisurazioni/components/tables/log-misurazioni-table/log-misurazioni-table.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/sotto-cofano/LogMisurazioni/components/tables/log-misurazioni-table/log-misurazioni-table.ts index e468e2f1..6f839e1d 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/sotto-cofano/LogMisurazioni/components/tables/log-misurazioni-table/log-misurazioni-table.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/sotto-cofano/LogMisurazioni/components/tables/log-misurazioni-table/log-misurazioni-table.ts @@ -9,15 +9,13 @@ export default class LogMisurazioniTable extends Vue { rowData:any; mounted() { - } - convertDate(date) { return moment(date).format('L'); } convertDateToTime(date) { - return moment(date).format('HH:mm:ss.SSS'); + return moment(date).format('LTS'); } }