Skip to content

Commit

Permalink
added example template
Browse files Browse the repository at this point in the history
  • Loading branch information
Darginec05 committed Jul 20, 2024
1 parent 991cdfd commit 9b945d0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/example_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Example Request
description: Submit a request for an example
title: '[Example Request]: '
labels: ['Example Request']
body:
- type: markdown
attributes:
value: |
Need an example of how to do something with Yoopta-Editor?
- type: textarea
id: description
attributes:
label: What's the example?
description: Please describe the example. What would you like to see?
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/Darginec05/Yoopta-Editor/blob/master/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
2 changes: 1 addition & 1 deletion packages/core/editor/src/UI/Overlay/Overlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Props = {

const Overlay = ({ className, onClick, children, lockScroll = true, ...rest }: Props) => {
return (
<FloatingOverlay lockScroll={lockScroll} className={`yoopta-portal ${className}`} onClick={onClick} {...rest}>
<FloatingOverlay lockScroll={lockScroll} className={className} onClick={onClick} {...rest}>
{children}
</FloatingOverlay>
);
Expand Down

0 comments on commit 9b945d0

Please sign in to comment.