Skip to content

Commit 28f7f73

Browse files
committed
renamed tag content symbol
1 parent bd7aaa7 commit 28f7f73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/webapp/app/components/runs/v3/RunTag.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function RunTag({ tag, to, tooltip }: { tag: string; to?: string; tooltip
2929
const [isHovered, setIsHovered] = useState(false);
3030

3131
// Render the basic tag content
32-
const renderBasicTagContent = () => {
32+
const renderTagContent = () => {
3333
if (typeof tagResult === "string") {
3434
return (
3535
<>
@@ -59,14 +59,14 @@ export function RunTag({ tag, to, tooltip }: { tag: string; to?: string; tooltip
5959
<SimpleTooltip
6060
button={
6161
<Link to={to} className="group">
62-
<span className="flex h-6 items-stretch">{renderBasicTagContent()}</span>
62+
<span className="flex h-6 items-stretch">{renderTagContent()}</span>
6363
</Link>
6464
}
6565
content={tooltip || `Filter runs by ${tag}`}
6666
disableHoverableContent
6767
/>
6868
) : (
69-
<span className="flex h-6 items-stretch">{renderBasicTagContent()}</span>
69+
<span className="flex h-6 items-stretch">{renderTagContent()}</span>
7070
);
7171

7272
return (

0 commit comments

Comments
 (0)