Merge branch 'VM/DM-358' into 'master'
DM-358 - Implement Help Mode-IDs for DocuMine Closes DM-358 See merge request redactmanager/red-ui!78
This commit is contained in:
commit
a0452d528b
@ -24,7 +24,7 @@
|
||||
|
||||
<div class="separator">·</div>
|
||||
|
||||
<form [formGroup]="form">
|
||||
<form [formGroup]="form" [attr.help-mode-key]="'audit_filter_audit_entries'">
|
||||
<div class="iqser-input-group w-150 mr-20">
|
||||
<mat-form-field>
|
||||
<mat-select (selectionChange)="filterChange()" formControlName="category" id="select-category">
|
||||
@ -103,7 +103,7 @@
|
||||
</div>
|
||||
|
||||
<div class="cell">
|
||||
<span class="small-label">{{ log.recordDate | date : 'd MMM yyyy, hh:mm a' }}</span>
|
||||
<span class="small-label">{{ log.recordDate | date: 'd MMM yyyy, hh:mm a' }}</span>
|
||||
</div>
|
||||
|
||||
<div class="user-column cell">
|
||||
@ -116,6 +116,7 @@
|
||||
<div class="action-buttons">
|
||||
<iqser-circle-button
|
||||
(action)="openAuditDetails(log)"
|
||||
[attr.help-mode-key]="'audit_detailed_audit_info'"
|
||||
*ngIf="log.hasDetails"
|
||||
[tooltip]="'audit-screen.action.info' | translate"
|
||||
icon="red:info"
|
||||
|
||||
@ -51,7 +51,7 @@
|
||||
<iqser-circle-button
|
||||
(action)="openConfigurationsDialog()"
|
||||
*allow="roles.fileAttributes.writeConfig; if: currentUser.isAdmin"
|
||||
[attr.help-mode-key]="'upload_file_attribute'"
|
||||
[attr.help-mode-key]="'configure_csv_mapping'"
|
||||
[tooltip]="'file-attributes-listing.configurations' | translate"
|
||||
icon="iqser:settings"
|
||||
tooltipPosition="above"
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
<ng-container *ngFor="let placeholder of placeholders">
|
||||
<div class="placeholder">{{ placeholder.placeholder }}</div>
|
||||
<div
|
||||
[innerHTML]="placeholder.descriptionTranslation | translate : { attribute: placeholder.attributeName }"
|
||||
[innerHTML]="placeholder.descriptionTranslation | translate: { attribute: placeholder.attributeName }"
|
||||
class="description"
|
||||
></div>
|
||||
</ng-container>
|
||||
@ -25,7 +25,7 @@
|
||||
(action)="fileInput.click()"
|
||||
*allow="roles.reportTemplates.upload; if: currentUser.isAdmin"
|
||||
[tooltip]="'reports-screen.upload-document' | translate"
|
||||
[attr.help-mode-key]="'reports'"
|
||||
[attr.help-mode-key]="'upload_report'"
|
||||
icon="iqser:upload"
|
||||
></iqser-circle-button>
|
||||
</div>
|
||||
|
||||
@ -596,5 +596,21 @@
|
||||
"elementKey": "workload_bulk_selection",
|
||||
"documentKey": "workload_bulk_selection",
|
||||
"overlappingElements": ["USER_MENU", "DOCUMENT_INFO"]
|
||||
},
|
||||
{
|
||||
"elementKey": "audit_detailed_audit_info",
|
||||
"documentKey": "audit_detailed_audit_info"
|
||||
},
|
||||
{
|
||||
"elementKey": "audit_filter_audit_entries",
|
||||
"documentKey": "audit_filter_audit_entries"
|
||||
},
|
||||
{
|
||||
"elementKey": "configure_csv_mapping",
|
||||
"documentKey": "configure_csv_mapping"
|
||||
},
|
||||
{
|
||||
"elementKey": "upload_report",
|
||||
"documentKey": "upload_report"
|
||||
}
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user