visual change
This commit is contained in:
parent
45e91762a9
commit
e3f4842e60
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue