Liam Stanley
Liam Stanley
Example of dynamically updating the template with latest X number of releases (if we wanted to restrict what versions are listed, might cut down on "hey this version is very...
> Yep, here's a pipeline that will reproduce this issue if you set credentials named `cred1` and `cred2` in your secrets manager: > [...] So I don't actually think that...
Tested this 7.8.1 and unable to replicate without using inline variable references:  @holgerstolzenberg is your usecase similar to that of @will-gant's? If so, this is expected behavior. Similar to...
@holgerstolzenberg could you provide a yaml example that can be used to replicate the issue?
Hard to say exactly what the issue could be without any additional info, like other system logs leading up to the soft-lock, system metrics (memory/cpu/io usage), etc. Could you provide...
Take a look at the documentation for `SetSizePolicy` and the widgets which implement it. You will likely need to set maximum, or similar, for widgets to stretch available space. https://godoc.org/github.com/marcusolsson/tui-go#SizePolicy
Also worth looking at some of the examples. The chat example utilizes size policies, to handle sizing. E.g. "this widget should take up as much space as possible", or "this...
It's been a few since I've used tui-go, but if I recall correctly, you may need to change the size policy of the opposing element too (looks like in this...
May need to also set size policies on the inner element within the scroll area too, to ensure it maximizes the horizontal space.
I've attempted to correct the issue with the example code, however I am unable. If I recall correctly, I may have ran into a similar issue in the past. It's...