It would be so much more tidy if I could use anchors and aliases to repeat chunks of code in my dashboard. I can do it initially, but as soon as I save those aliases are replaced with values.
Example:
key_with_values:
- list_item_1
- list_item_2
- list_item_3
key_with_repeated_values:
- list_item_1
- list_item_2
- list_item_3
becomes this…
key_with_anchor_values: &list
- list_item_1
- list_item_2
- list_item_3
key_with_alias_values: *list