Skip to content

Commit 18e55c7

Browse files
chriscrosstalkclaude
authored andcommitted
fix(Wikipedia): prevent loading spinner overlay during download
The LoadingSpinner component defaults to fullscreen mode which renders a Semantic UI dimmer overlay with "Loading" text. This was overlapping with the blue "Downloading Wikipedia" status banner. Changed to use fullscreen={false} iconOnly to render just the spinner icon inline within the banner. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 738b57e commit 18e55c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin/inertia/components/WikipediaSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const WikipediaSelector: React.FC<WikipediaSelectorProps> = ({
4848
{/* Downloading status message */}
4949
{isDownloading && (
5050
<div className="mb-4 p-3 bg-blue-50 border border-blue-200 rounded-lg flex items-center gap-2">
51-
<LoadingSpinner className='size-5' />
51+
<LoadingSpinner fullscreen={false} iconOnly className="size-5" />
5252
<span className="text-sm text-blue-700">
5353
Downloading Wikipedia... This may take a while for larger packages.
5454
</span>

0 commit comments

Comments
 (0)