mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Display app and binary size
This commit is contained in:
parent
da1ce05470
commit
b5adbe5b78
2 changed files with 239 additions and 182 deletions
|
|
@ -89,11 +89,23 @@
|
|||
<div class="absolute hidden left-0 h-12 w-12 rounded-full md:flex items-center justify-center bg-darker">
|
||||
{{ appScan.name.charAt(0) }}
|
||||
</div>
|
||||
{{ appScan.displayName || appScan.name }} {{ appScan.appVersion ? `- v${appScan.appVersion}` : '' }}
|
||||
{{ appScan.displayName || appScan.name }}
|
||||
{{ appScan.appVersion ? `- v${appScan.appVersion}` : '' }}
|
||||
{{ appScan.displayAppSize ? `- App ${appScan.displayAppSize}` : '' }}
|
||||
{{ appScan.displayBinarySize ? `- Binary ${appScan.displayBinarySize}` : '' }}
|
||||
<div class="text-sm leading-5 font-bold">
|
||||
{{ appScan.statusMessage }}
|
||||
</div>
|
||||
|
||||
appScan.binarySize: {{ appScan.binarySize }}
|
||||
|
||||
<div
|
||||
v-if="appScan.binarySize && appScan.binarySize < (10 ^ 6)"
|
||||
class="text-sm leading-5 font-bold"
|
||||
>
|
||||
⚠️ Large Binary - This scan may take a while an/or have issues
|
||||
</div>
|
||||
|
||||
<details class="w-full pt-6">
|
||||
<summary class="cursor-pointer mb-3">Details</summary>
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue