-
Notifications
You must be signed in to change notification settings - Fork 20
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
feat #396 : Create Experiments From Overrides #397
base: main
Are you sure you want to change the base?
feat #396 : Create Experiments From Overrides #397
Conversation
@@ -228,6 +229,8 @@ pub fn context_override() -> impl IntoView { | |||
} | |||
}, | |||
); | |||
let (_reset_exp_form, set_exp_form) = create_signal(0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we really need this signal ?
the data is not being read anywhere
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh yeah, that state is of no use, removed it
set_exp_form.update(|val| { | ||
*val += 1; | ||
}); | ||
close_drawer("create_exp_drawer"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isn't this already being done by the handle_submit
of the Experiment popup ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it's not.
} | ||
> | ||
|
||
<EditorProvider> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ShubhranshuSanjeev shouldn't this Provider
be already present inside the Forms
itself
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please change the commit action, squash the commits as well
also, files are not formatted correctly
2d75332
to
733caf4
Compare
733caf4
to
76e3430
Compare
@yuvrajjsingh0 Can you please attach a video for this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please keep the commit action specifically as "feat: <<Commit Message>>"
Video: Screen.Recording.2025-02-03.at.11.58.17.AM.mov |
Problem
Create Experiments From Overrides
Solution
Added create experiment popup to overrides