We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3986a73 commit 035a62dCopy full SHA for 035a62d
1 file changed
src/Filament/Widgets/CmsVersionInfo.php
@@ -48,17 +48,17 @@ public function upgradeAction(): Action
48
->color('primary');
49
}
50
51
-
52
public function getVersionDisplayText()
53
{
54
$pluginVersion = inspirecms()->version();
55
- if (is_string($pluginVersion) && !str_contains($pluginVersion, 'dev')) {
+ if (is_string($pluginVersion) && ! str_contains($pluginVersion, 'dev')) {
56
$pluginVersion = 'v' . $pluginVersion;
57
58
$licenseTier = app(LicenseManager::class)->getLicenseTier();
59
if ($licenseTier && filled($licenseTier)) {
60
$licenseTier = ucfirst($licenseTier);
61
+
62
return implode(' ', [
63
$licenseTier,
64
$pluginVersion,
0 commit comments