license detection fix

This commit is contained in:
SPRINX0\prochazka
2025-06-20 14:36:00 +02:00
parent 162040545d
commit fec10d453f

View File

@@ -27,7 +27,9 @@
</div>
<div>
License type: <span
>{$config?.checkedLicense ? ($config?.checkedLicense?.licenseTypeObj?.name ?? 'Unknown') : 'Community'}</span
>{$config?.checkedLicense && $config?.checkedLicense?.type != 'community'
? ($config?.checkedLicense?.licenseTypeObj?.name ?? 'Unknown')
: 'Community'}</span
>
</div>