visual change

This commit is contained in:
alejandro.campos@artica.es 2022-12-13 16:00:35 +01:00
parent 45e91762a9
commit e3f4842e60
3 changed files with 7 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -893,8 +893,13 @@ abstract class VisualConsoleItem<Props extends ItemProps> {
) { ) {
if (this.meta.editMode && this.meta.maintenanceMode === false) { if (this.meta.editMode && this.meta.maintenanceMode === false) {
this.elementRef.classList.add("is-editing"); this.elementRef.classList.add("is-editing");
this.elementRef.classList.remove("is-alert-triggered");
} else { } else {
this.elementRef.classList.remove("is-editing"); this.elementRef.classList.remove("is-editing");
if (this.props.alertOutline) {
this.elementRef.classList.add("is-alert-triggered");
}
} }
} }