Items of array in the site editor

Hello @DaviGarcia !

Yeah, it’s possible using a property named as __editorItemTitle inside the items of array property. You can check the solution below:

    property: {
      type: 'array',
      title: 'My input',
      items: {
        title: 'teste',
        type: 'object',
        properties: {
          __editorItemTitle: {
            title: 'Change item name',
            type: 'string',
          },
        },
      },
    },

named item list

2 Likes