Header text in structure field not working

Just found something…… I’m making a site that has food menus on it … I have a structure field for the items, and two columns, one with a label of V for vegetarian, and one with a label of N for Nuts. The “N” Header text wont show up! the V does. Unless i change it to “Nuts” but thats makes it unnecessarily wide. It’s only got a toggle field in it…… bug or no bug?

food:
  label:          Food
  type:           structure
  columns:
    dish:
        width:    4/12
        align:    left
    description:
        width:    5/12
        align:    left
    vegan:
        width:    1/12
        align:    center
    nuts:
        width:    2/12
        align:    center
  fields:
    dish:
      label:      Dish
      type:       text
      width:      2/3
    description:
      label:      Description
      type:       textarea
    vegan:
      label:      V
      type:       toggle
      width:      1/3
    nuts:
      label:      N
      type:       toggle
      width:      1/3

You can make it appear by wrapping it in quotes.

No idea what is the problem with the N, but it shows up red in VS Code…

Ah ha! Ok i will do that… maybe it sees it as Null or something. Id be curious to find out why though. I think there was an issue with setting the toggle field label to Yes / No, unless wrapped in qoutes. Maybe its related.

I guess it’s N for No, and Y for Yes, cause using Y has the same effect. Special characters that need to be escaped.

Which editor are you using? It should actually warn you of such issues?

Using Atom. It does not. VS Code has intellisense. It’s probably that telling you.