Fix missing placeholder warning for infoboxes (#22898)

This commit is contained in:
Charles Gagnon
2023-05-01 09:30:02 -07:00
committed by GitHub
parent 6b1dd0e468
commit 519a42c5b3

View File

@@ -78,8 +78,8 @@ export default class InfoBoxComponent extends ComponentBase<azdata.InfoBoxCompon
this._container.nativeElement.style.height = this.getHeight();
this._infoBox.announceText = this.announceText;
this._infoBox.infoBoxStyle = this.style;
this._infoBox.links = this.links;
this._infoBox.text = this.text;
this._infoBox.links = this.links;
this._infoBox.isClickable = this.isClickable;
this._infoBox.clickableButtonAriaLabel = this.clickableButtonAriaLabel;
}