Wizard: Make the blueprint name unclickable after filtering
Fixes #3419
This commit is contained in:
parent
0373a55f8c
commit
d03f41f160
1 changed files with 2 additions and 1 deletions
|
|
@ -558,6 +558,7 @@ const Row = ({
|
|||
const [isExpanded, setIsExpanded] = useState(false);
|
||||
const handleToggle = () => setIsExpanded(!isExpanded);
|
||||
const dispatch = useDispatch();
|
||||
const selectedBlueprintId = useAppSelector(selectSelectedBlueprintId);
|
||||
|
||||
const handleClick = ({
|
||||
blueprintId,
|
||||
|
|
@ -580,7 +581,7 @@ const Row = ({
|
|||
}}
|
||||
/>
|
||||
<Td dataLabel="Image name">
|
||||
{compose.blueprint_id ? (
|
||||
{compose.blueprint_id && !selectedBlueprintId ? (
|
||||
<Button
|
||||
component="a"
|
||||
variant="link"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue