diff options
| author | 2026-01-14 14:14:05 +0800 | |
|---|---|---|
| committer | 2026-01-14 14:14:05 +0800 | |
| commit | d689d0b8d33ad9d3bc5c235bbfb3ce792efe7536 (patch) | |
| tree | 4f78d28583470c4c6ce8b635e2ba600f691bcc3f /ui/src/components/VersionsView.svelte | |
| parent | d2b2171d0af3b4b0f59360be7c4c79951458242f (diff) | |
| download | DropOut-d689d0b8d33ad9d3bc5c235bbfb3ce792efe7536.tar.gz DropOut-d689d0b8d33ad9d3bc5c235bbfb3ce792efe7536.zip | |
Update ui/src/components/VersionsView.svelte
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Diffstat (limited to 'ui/src/components/VersionsView.svelte')
| -rw-r--r-- | ui/src/components/VersionsView.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/VersionsView.svelte b/ui/src/components/VersionsView.svelte index 27aba7d..98261b8 100644 --- a/ui/src/components/VersionsView.svelte +++ b/ui/src/components/VersionsView.svelte @@ -3,7 +3,7 @@ let searchQuery = $state(""); let normalizedQuery = $derived( - searchQuery.trim().toLowerCase().replaceAll("。", ".") + searchQuery.trim().toLowerCase().replace(/。/g, ".") ); let filteredVersions = $derived( |