We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a57253 commit e25855cCopy full SHA for e25855c
src/components/date-time-input/date-time-input.ts
@@ -609,7 +609,6 @@ export default class IgcDateTimeInputComponent extends EventEmitterMixin<
609
610
protected handleBlur() {
611
const isEmptyMask = this.maskedValue === this.emptyMask;
612
- const isSameValue = this._oldValue === this.value;
613
614
this.focused = false;
615
@@ -626,6 +625,8 @@ export default class IgcDateTimeInputComponent extends EventEmitterMixin<
626
625
this.updateMask();
627
}
628
+ const isSameValue = this._oldValue === this.value;
629
+
630
if (!(this.readOnly || isSameValue)) {
631
this.emitEvent('igcChange', { detail: this.value });
632
0 commit comments