We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A spec defined with a default: 'string' failed with a warning:
default: 'string'
Invalid prop: type check failed for prop "data". Expected Object, got String with value "status2".
{ type: 'mgChoiceDropdown', id: 'field', title: 'Field Title', default: 'status2', enum: [ { id: 'status1', title: 'Status1' }, { id: 'status2', title: 'Status2' }, { id: 'status3', title: 'Status3' }, { id: 'status4', title: 'Status4' }, ], };
Succeeded as an object:
{ type: 'mgChoiceDropdown', id: 'field', title: 'Field Title', default: { id: 'status2' }, enum: [ { id: 'status1', title: 'Status1' }, { id: 'status2', title: 'Status2' }, { id: 'status3', title: 'Status3' }, { id: 'status4', title: 'Status4' }, ], };
An example within mgText is set to default: 'off' and is likely incorrect.
mgText
default: 'off'
MacGyver2/src/components/mgText.vue
Line 24 in a242848
The text was updated successfully, but these errors were encountered:
Unsure. May be invalid.
Sorry, something went wrong.
No branches or pull requests
A spec defined with a
default: 'string'
failed with a warning:Invalid prop: type check failed for prop "data". Expected Object, got String with value "status2".
Succeeded as an object:
An example within
mgText
is set todefault: 'off'
and is likely incorrect.MacGyver2/src/components/mgText.vue
Line 24 in a242848
The text was updated successfully, but these errors were encountered: