знак вопроса - это всплывающая подсказка с угловым компонентом, которая должна быть в конце ввода. Я не уверен, как это можно сделать, прикрепив скриншот проблемы.![enter image description here](https://i.stack.imgur.com/MxEGh.png)
<div id="{{config.name}}" class="dynamic-field form-explorer" [formGroup]="group" [ngClass]="fieldShow" [class.has-tooltip]="config.tooltip" *ngIf="!config.isHidden">
<button mat-raised-button (click)="toggleTree()" type="button">{{"Browse" | translate}}</button>
<tooltip *ngIf="config.tooltip" [message]="config.tooltip"></tooltip>
<mat-input-container class="full-width">
<input matInput [type]="'text'" [placeholder]="config.placeholder | translate" [formControlName]="config.name" [required]="config.required">
</mat-input-container>
<mat-error *ngIf="config.hasErrors">{{config.errors}}</mat-error>
</div>