Designer Strange Behavior

I'm using Ignition Cloud 8.3.7. I'm working on a perspective view in the designer and some changes I am making don't stick. For example, I wrapped a text input in a flex row and then added a label. I bound the text of the label with an expression "Well " + {view.params.well} + " Name:" and well = 1, but the text stays "Label" instead of "Well 1 Name:".

I've saved the project and the change takes effect on the page, but other issues are more concerning. I've tried to change the properties of the Flex container and the changes are immediately rejected. I tried to change the label to grow: 1 and shrink: 0 and increase basis: 150px, but nothing happens. Saving doesn't translate to changes on the live page.

I know this sounds dumb, but have you tried turning it on and off again? I find issues accumulate in the designer if I leave it open for a long while. If that doesn't help, can you take some snapshots to show what specifically is happening?

Providing the JSON of the View, or at least a screenshot might help elicit more user feedback/assistance. Is there any chance your deep-selection focus is not the container you think it is, and perhaps the settings are applied to some other component?

In theory, if your Label is the only component in the container and you apply the basis and grow settings, you wouldn't actually see any difference because the Label will automatically overflow and display your entire string anyway. This theory doesn't hold up if you're looking at the actual defined boundaries of the component while it is selected, but without screenshots I can't verify anything.

Have you tried looking at the logs for the specific error? Gateway Webpage > Diagnostics > Logs

I came back after the weekend and a fresh designer doesn't seem to be having the issues I had before. So I can't provide any videos of what it was doing. Very strange. I'm very sure my deep selection was correct nor did it matter because the root flex container would also not take the changes. I'm just glad it's taking my changes now. I'll remember next time if it acts oddly to just close and reopen the designer.

Edit: It just did it again. I'll see if I can get a video of it.

Video

Did you add your components into the flex container by using the right click context menu instead of pasting them manually into the flex? You described the exact bug that happens with the context menu way, which is resolved by closing and opening the view again in the designer. I avoid using the context menu anymore due to this (ie prop value changes not taking on the new flex/children until you reopen the view)

You are in the label component and changing those properties that are impacting the parent container (in this case FlexContainer_2). To make changes, you need to go into FlexContainer_2 to have those changes save. That was an issue I had earlier and that was what I figured out after playing around with the properties.

I did add it via the context menu. I was unaware this was a known issue. I'll avoid this function.