diff options
Diffstat (limited to 'client/src/app/shared/shared-forms/reactive-file.component.html')
-rw-r--r-- | client/src/app/shared/shared-forms/reactive-file.component.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-forms/reactive-file.component.html b/client/src/app/shared/shared-forms/reactive-file.component.html index f6bf5f9ae..d18a99d46 100644 --- a/client/src/app/shared/shared-forms/reactive-file.component.html +++ b/client/src/app/shared/shared-forms/reactive-file.component.html | |||
@@ -1,5 +1,5 @@ | |||
1 | <div class="root"> | 1 | <div class="root"> |
2 | <div class="button-file" [ngClass]="{ 'with-icon': !!icon }"> | 2 | <div class="button-file" [ngClass]="{ 'with-icon': !!icon }" [ngbTooltip]="buttonTooltip"> |
3 | <my-global-icon *ngIf="icon" [iconName]="icon"></my-global-icon> | 3 | <my-global-icon *ngIf="icon" [iconName]="icon"></my-global-icon> |
4 | 4 | ||
5 | <span>{{ inputLabel }}</span> | 5 | <span>{{ inputLabel }}</span> |
@@ -12,4 +12,8 @@ | |||
12 | </div> | 12 | </div> |
13 | 13 | ||
14 | <div class="filename" *ngIf="displayFilename === true && filename">{{ filename }}</div> | 14 | <div class="filename" *ngIf="displayFilename === true && filename">{{ filename }}</div> |
15 | |||
16 | <button *ngIf="displayReset && filename" i18n class="reset-button" (click)="reset()"> | ||
17 | Reset | ||
18 | </button> | ||
15 | </div> | 19 | </div> |