Skip to content
Discussion options

You must be logged in to vote

I'm not sure I understand your question. The following change in your InputEditCaptions component should address the issue you are seeing.

const stopPropagation = (event) => {
  event.preventDefault();
  event.stopPropagation();
};

return (
  <div
    className="d-flex flex-column "
    style={{
      position: "absolute",
      bottom: "50px",
    }}
    onPointerDown={stopPropagation}
    onKeyDown={stopPropagation}
    onWheel={stopPropagation}
  >

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@JulioVianaDev
Comment options

@igordanchenko
Comment options

Answer selected by JulioVianaDev
@JulioVianaDev
Comment options

@igordanchenko
Comment options

@JulioVianaDev
Comment options

@JulioVianaDev
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #202 on November 07, 2023 19:53.