Skip to content

Commit

Permalink
Update for Sonoma Web Apps
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxudo committed Jan 24, 2024
1 parent 4c8f033 commit b8225a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
7 changes: 1 addition & 6 deletions views/applications_listing.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@
<div class="container">
<div class="row">
<div class="col-lg-12">

<h3><span data-i18n="applications.reporttitle"></span> <span id="total-count" class='label label-primary'>…</span></h3>

<table class="table table-striped table-condensed table-bordered">

<thead>
<tr>
<th data-i18n="listing.computername" data-colname='machine.computer_name'></th>
Expand All @@ -24,13 +21,11 @@
<th data-i18n="info" data-colname='applications.info'></th>
</tr>
</thead>

<tbody>
<tr>
<td data-i18n="listing.loading" colspan="12" class="dataTables_empty"></td>
</tr>
</tbody>

</table>
</div> <!-- /span 12 -->
</div> <!-- /row -->
Expand Down Expand Up @@ -132,6 +127,7 @@
colvar = colvar == 'arch_ios' ? 'Apple Silicon' :
colvar = colvar == 'arch_other' ? 'Unknown' :
colvar = colvar == 'arch_arm' ? 'Apple Silicon' :
colvar = colvar == 'arch_web' ? 'Web App' :
(colvar == 'arch_arm' ? 'Apple Silicon' : colvar)
$('td:eq(9)', nRow).html(colvar)

Expand All @@ -142,7 +138,6 @@
$('td:eq(8)', nRow).html(colvar)
}
});

});
</script>

Expand Down
1 change: 1 addition & 0 deletions views/applications_tab.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
colvar = colvar == 'arch_arm_i64' ? 'Universal 2' :
colvar = colvar == 'arch_ios' ? 'Apple Silicon' :
colvar = colvar == 'arch_arm' ? 'Apple Silicon' :
colvar = colvar == 'arch_web' ? 'Web App' :
colvar = colvar == 'arch_other' ? 'Unknown' :
(colvar == 'arch_arm' ? 'Apple Silicon' : colvar)
$('td:eq(7)', nRow).text(colvar)
Expand Down

0 comments on commit b8225a0

Please sign in to comment.