Skip to content

Commit eb66322

Browse files
committed
Merge remote-tracking branch 'origin/main' into pr/876
2 parents 77af29c + 75d871d commit eb66322

File tree

90 files changed

+274
-125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+274
-125
lines changed

app/Models/Plugin.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ public function getDocUrl(string $version = null): ?string
8585
}
8686

8787
if (filled($this->docs_urls)) {
88-
return $this->docs_urls[$version ?? key($this->docs_urls)] ?? null;
88+
$docsUrls = $this->docs_urls;
89+
krsort($docsUrls);
90+
91+
return $docsUrls[$version ?? array_key_first($docsUrls)] ?? null;
8992
}
9093

9194
return null;

content/articles/leandrocfe-whats-new-in-filament-v4.md

Lines changed: 1 addition & 1 deletion
1.03 MB
120 KB

content/authors/avatars/resma.jpg

64 KB

content/authors/backstage.md

Lines changed: 9 additions & 0 deletions

content/authors/charlie-etienne.md

Lines changed: 9 additions & 0 deletions

content/authors/resma.md

Lines changed: 6 additions & 0 deletions

content/plugins/achyutn-log-viewer.md

Lines changed: 4 additions & 2 deletions

content/plugins/alkoumi-image-radio-button.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)