Skip to content

Commit a36d040

Browse files
patconclaude
andcommitted
Rename upload to import in button labels and icons
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8e7dd46 commit a36d040

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/components/convo-explorer/D3Map.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { PALETTE_COLORS, UNPAINTED_COLOR, UNPAINTED_VALUE } from "@/constants";
66
import { usePipelineOptions } from "../../../.storybook/hooks/usePipelineOptions";
77
import { PipelineSelector } from "./PipelineSelector";
88
import { Button } from "../ui/button";
9-
import { Upload } from "lucide-react";
9+
import { Import } from "lucide-react";
1010

1111
type ProjectionData = [string, [number, number]][];
1212

@@ -789,12 +789,12 @@ export const D3Map: React.FC<D3MapProps> = ({
789789
variant="outline"
790790
size="sm"
791791
onClick={onLoadFile}
792-
title="Load .h5ad file"
792+
title="Import .h5ad file"
793793
className="absolute bg-white/90 backdrop-blur-sm shadow-sm"
794794
style={{ top: '2.5rem', left: '1rem' }}
795795
>
796-
<Upload className="h-4 w-4 mr-1" />
797-
Load .h5ad
796+
<Import className="h-4 w-4 mr-1" />
797+
Import .h5ad
798798
</Button>
799799
)}
800800

src/components/convo-explorer/PipelineSelector.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from "react";
22
import { Combobox, type ComboboxOption } from "../ui/combobox";
33
import { Button } from "../ui/button";
4-
import { Repeat1, Repeat, Upload } from "lucide-react";
4+
import { Repeat1, Repeat, Import } from "lucide-react";
55

66
interface PipelineOption {
77
id: string;
@@ -124,9 +124,9 @@ export const PipelineSelector: React.FC<PipelineSelectorProps> = ({
124124
size="sm"
125125
onClick={onLoadFile}
126126
disabled={isAnimating}
127-
title="Load a new file"
127+
title="Import a new file"
128128
>
129-
<Upload className="h-4 w-4" />
129+
<Import className="h-4 w-4" />
130130
</Button>
131131
)}
132132
</div>

0 commit comments

Comments
 (0)