[#689] Reset cut is not updating view#692
Conversation
| * @param config config to be displayed as a Phoenix Menu item. | ||
| * @returns The current node. | ||
| */ | ||
| addConfig<T extends keyof PhoenixMenuConfigs>( |
There was a problem hiding this comment.
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)
|
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