-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MNT-24575] Added return type to function. Consolidated different pro…
…perties into a single type
- Loading branch information
1 parent
8877fad
commit 40d3eee
Showing
3 changed files
with
29 additions
and
25 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
projects/aca-content/src/lib/dialogs/folder-details/folder-information.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
<div class="aca-folder-info-container"> | ||
<div class="aca-folder-info-header"> | ||
<div class="aca-folder-icon"> | ||
<img alt="{{ 'APP.FOLDER_INFO.ICON' | translate }}" src="{{ icon }}"> | ||
<img alt="{{ 'APP.FOLDER_INFO.ICON' | translate }}" src="{{ folderDetails.icon }}"> | ||
</div> | ||
<div class="aca-folder-title" data-automation-id="folder-info-name">{{ name }}</div> | ||
<div class="aca-folder-title" data-automation-id="folder-info-name">{{ folderDetails.name }}</div> | ||
</div> | ||
<mat-divider></mat-divider> | ||
<mat-divider/> | ||
<div class="aca-folder-info-body"> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.SIZE' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-size">{{ size }}</div> | ||
data-automation-id="folder-info-size">{{ folderDetails.size }}</div> | ||
</div> | ||
<mat-divider></mat-divider> | ||
<mat-divider/> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.LOCATION' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-location">{{ location }}</div> | ||
data-automation-id="folder-info-location">{{ folderDetails.location }}</div> | ||
</div> | ||
<mat-divider></mat-divider> | ||
<mat-divider/> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.CREATED' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-creation-date" | ||
[title]="created | adfLocalizedDate">{{ created | adfTimeAgo }}</div> | ||
[title]="folderDetails.created | adfLocalizedDate">{{ folderDetails.created | adfTimeAgo }}</div> | ||
</div> | ||
<mat-divider></mat-divider> | ||
<mat-divider/> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.MODIFIED' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-modify-date" | ||
[title]="modified | adfLocalizedDate">{{ modified | adfTimeAgo }}</div> | ||
[title]="folderDetails.modified | adfLocalizedDate">{{ folderDetails.modified | adfTimeAgo }}</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters