diff --git a/client/src/views/fields/datetime.js b/client/src/views/fields/datetime.js index 3f523ab1a8..a49b5988bd 100644 --- a/client/src/views/fields/datetime.js +++ b/client/src/views/fields/datetime.js @@ -136,7 +136,7 @@ class DatetimeFieldView extends DateFieldView { 'yesterday': [dt.add(-3, 'days').unix(), dt.add(1, 'days').unix()] }; - if (d.unix() > ranges['today'][0] && d.unix() < ranges['today'][1]) { + if (d.unix() >= ranges['today'][0] && d.unix() < ranges['today'][1]) { return this.translate('Today') + ' ' + d.format(timeFormat); } else if (d.unix() > ranges['tomorrow'][0] && d.unix() < ranges['tomorrow'][1]) {