This commit is contained in:
Tyler James Leonhardt 2022-09-29 10:14:16 -07:00 committed by GitHub
parent 7d3027e43c
commit 261fc99955
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1166,11 +1166,14 @@ class InputBox extends QuickInput implements IInputBox {
if (!this.visible) {
return;
}
this.ui.container.classList.remove('hidden-input');
const visibilities: Visibilities = {
title: !!this.title || !!this.step || !!this.buttons.length,
description: !!this.description || !!this.step,
inputBox: true, message: true
};
this.ui.setVisibilities(visibilities);
super.update();
if (this.ui.inputBox.value !== this.value) {
@ -1186,7 +1189,6 @@ class InputBox extends QuickInput implements IInputBox {
if (this.ui.inputBox.password !== this.password) {
this.ui.inputBox.password = this.password;
}
}
}