-
Notifications
You must be signed in to change notification settings - Fork 54
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
[#689] Reset cut is not updating view #692
Conversation
* @returns The current node. | ||
*/ | ||
addConfig<T extends keyof PhoenixMenuConfigs>( |
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.
So, the plan here is to avoid type inference and make it explicit in the caller? Is there an advantage to this i.e. was this the cause of the problem?
(Just for my understanding)
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.
ping @emiliocortina ?
Hey Emilio - thank you so much for doing this! I confirm that the reset cut button now works as expected. However, I think the cuts no longer do anything (for some reason which is not obvious to me). For example, go to https://hepsoftwarefoundation.org/phoenix/#/atlas and load the attached config file - the screen should go blank. But when I do this locally, the jets (the blue cones) are still visible. I just did some debugging, and I still cannot see the problem. AFAICS the Less importantly, you can find out how to fix the CI failure TL;DR: run |
Hmm. A bit more debugging, and I think the issue might be that cut dialog ownership is not correct - cuts work for the first Jet collection ("AntiKt4EMTopoJets_xAOD") but for the second ("AntiKt4LCTopoJets_xAOD") the |
Yeah, this is definitely it. In public getConfigRangeSlider(
collectionFiltering: () => void,
): ConfigRangeSlider {
if (this.configRangeSlider == undefined) {
this.configRangeSlider = {
type: 'rangeSlider', |
HSF#689 Prettier fixes Deep copy cuts, so that they work correctly Add missing documentation for range slider
This is great! I took a look a couple of days ago and I found it very weird that it was working for the tracks, but not for the jets |
#689