We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f63717b + c1ca254 commit 7ebd3ebCopy full SHA for 7ebd3eb
openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/VWidget.js
@@ -246,8 +246,8 @@ export default {
246
if (
247
value &&
248
this.valueId &&
249
- (this.valueId.includes('PACKET_TIMEFORMATTED') ||
250
- this.valueId.includes('RECEIVED_TIMEFORMATTED'))
+ (this.valueId.toUpperCase().includes('PACKET_TIMEFORMATTED') ||
+ this.valueId.toUpperCase().includes('RECEIVED_TIMEFORMATTED'))
251
) {
252
// Our dates have / rather than - which results in an invalid date on old browsers
253
// when they call new Date(value)
0 commit comments