Is there a way to replace the Star symbol with an asterisk on a 'required' field label on Alpaca?
Here is the schema:
var Schema = {
"title": "Lista controlli",
"type": "array",
"items": {
"type": "object",
"title": "Controllo Lavorazione",
"properties": {
...
"Nome": {
"title": "Nome",
"type": "string",
"required": true
}
}
}
}
Thanks in advance.