Skip to content

Commit

Permalink
[frontend] fix content mapping view
Browse files Browse the repository at this point in the history
  • Loading branch information
frapuks committed Feb 28, 2024
1 parent cde7fe5 commit 7a58a0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const ContainerAddStixCoreObjects = (props) => {
} = viewStorage;

const containerRef = useRef(null);
const keyword = mapping && searchTerm.length === 0 ? selectedText : searchTerm;
const keyword = mapping && searchTerm?.length === 0 ? selectedText : searchTerm;
const handleOpenCreateEntity = () => {
setOpenCreateEntity(true);
setOpenSpeedDial(false);
Expand Down

0 comments on commit 7a58a0c

Please sign in to comment.