Members
string
# description Optional
Description of field. Shown as hoverable hint after label.
To use translations provide it in locale with specified options key from resource
Example
```js
new AdminJS({
resources: [
{
resource: myResource,
options: {
properties: {
myAwesomeProperty: {
description: "Plane description" || "awesomeHint", // <- message key in locale
},
},
},
},
],
locale: {
translations: {
resources: {
myResource: {
messages: {
awesomeHint: "Locale description",
},
},
},
},
},
});
```