Skip to content

Commit

Permalink
fix failure
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaKrimerman committed Oct 15, 2024
1 parent 702231d commit 10bc6e3
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,13 @@ export const ModelRegistryTableRowStatus: React.FC<ModelRegistryTableRowStatusPr

const label = (
<Label
{...(isClickable ? { onClick: () => {} } : {})}
{...(isClickable
? {
onClick: () => {
/* intentional no-op */
},
}
: {})}
data-testid="model-registry-label"
icon={icon}
color={color}
Expand Down

0 comments on commit 10bc6e3

Please sign in to comment.