Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added tooltips for OS and app bundles to the it standard report. Move… #565

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,6 @@ <h5 class="modal-title text-white" id="itStandTitle">
<ul [innerHTML]="renderListFromCsvString(itStandard.OperatingSystems)"></ul>
</div>
</div>
<div class="overview-item">
<div class="overview-item-title" [title]="getTooltip('App Bundle Ids')" role="tooltip">
<i class="fa fa-info-circle"></i>
<span class="heading">App Bundle Id(s)</span>
</div>
<div class="overview-item-content">
<ul [innerHTML]="renderListFromCsvString(itStandard.AppBundleIds)"></ul>
</div>
</div>
<div class="overview-item">
<div class="overview-item-title" [title]="getTooltip('Deployment Type')" role="tooltip">
<i class="fa fa-shipping-fast"></i>
Expand Down Expand Up @@ -263,6 +254,10 @@ <h5>Value</h5>
<div [hidden]="itStandard.ReferenceDocument">None</div>
</td>
</tr>
<tr *ngIf="isFieldPopulated(itStandard.AppBundleIds)">
<td><i class="fas fa-info-circle"></i><span [title]="getTooltip('App Bundle Ids')" role="tooltip">App Bundle IDs</span></td>
<td [innerHtml]="renderListFromCsvString(itStandard.AppBundleIds)"></td>
</tr>
</tbody>
</table>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,15 @@ export class ItStandardsComponent implements OnInit {
sortable: false,
visible: false,
formatter: this.sharedService.csvFormatter,
titleTooltip: this.getTooltip('Operating Systems')
},
{
field: 'AppBundleIds',
title: 'App Bundle Ids',
sortable: false,
visible: false,
formatter: this.sharedService.csvFormatter,
titleTooltip: this.getTooltip('App Bundle Ids')
}];

$('#itStandardsTable').bootstrapTable(
Expand Down
Loading