Strange behavior for an angular 16 component?
I have this component made in angular 16. It is supposed to display a red div with a message in it. import { ChangeDetectionStrategy, Component, Input, OnInit, } from “@angular/core”; import { MaintenanceMessage } from “@shared/models/maintenance”; @Component({ selector: “app-maintenance-footer”, template: ` <div class=”bg-red-600 p-3 text-4xl text-white text-center”> {{ maintenanceMessage.Message ?? “No message” | translate }} … Read more