-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow Events to be Duplicated #231
Comments
@nhatnghiho I don't think the export type Action = {
icon: FontAwesomeProps['icon'];
styling?: React.CSSProperties;
id?: string;
onMouseEnter?: () => void;
onMouseLeave?: () => void;
} & Omit<ButtonProps, 'children'>; |
Isn't it already been added? We have the tooltips for "Edit Color" and "Remove Event". Might need to merge from |
Ah I see, which branch should I PR to? |
|
### Summary Resolves #231 Allows users to duplicate custom blocks ### Checklist #### UI Requirements - [x] A new duplicate button is added to `Event`, which should display a popup saying "Duplicate event" when hovered over. #### Functional Requirements - [x] Event is duplicated correctly with a new ID. ### How to Test Host website locally and test event duplication. Verify that duplicated event id's are unique Co-authored-by: Samarth Chandna <[email protected]>
Description
We want to allow users to duplicate Custom Blocks.
Acceptance Criteria
UI Requirements
Event
, which should display a popup saying "Duplicate event" when hovered over.Functional Requirements
The text was updated successfully, but these errors were encountered: