How can I create a multiple string field in editionView()
and creationView()
?
The object looks like following:
{
id: 123,
name: 'foo',
redirects:[
"/foo",
"/foo-1",
"/foo-2",
]
}
I need to make a form there you can write your list of redirects
.
entity.editionView().fields([
nga.field('name'),
nga.field('redirects', '???')
]);
Thank you.