Missing field on new tech talent tree endpoint

The new tech talent tree index endpoint returns a name property only for the index endpoint.

https://us.api.blizzard.com/data/wow/tech-talent-tree/index?namespace=static-us

  },
  "talent_trees": [
    {
      "key": {
        "href": "https://us.api.blizzard.com/data/wow/tech-talent-tree/272?namespace=static-9.0.2_36532-us"
      },
      "name": "Nadjia the Mistblade",
      "id": 272
    }
]

This field is not present when fetching each item using the tech talent tree endpoint.

https://us.api.blizzard.com/data/wow/tech-talent-tree/807?namespace=static-us

{
  "_links": {
    "self": {
      "href": "https://us.api.blizzard.com/data/wow/tech-talent-tree/272?namespace=static-9.0.2_36532-us"
    }
  },
  "id": 272,
  "max_tiers": 5,
  "talents": [
    {
      "key": {
        "href": "https://us.api.blizzard.com/data/wow/tech-talent/807?namespace=static-9.0.2_36532-us"
      },
      "name": "Skillful Duelist",
      "id": 807
    },
    ...
  ]
}