You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 16, 2024. It is now read-only.
I found myself wondering, why the basic help text feature was not working. When using this field as the other basic fields from nova, the help function does not yield any result.
e.g.
Checkboxes::make('My Checks')
->help('Please tick one of the boxes') // not visible in the frontend
->options([ 1 => 'one', 2 => 'two']),
Looking into resources/js/components/FormField.vue:2, the default-field-tag is missing the attribute show-help-text and provide it with the showHelpText-variable coming from the FormField-mixin.