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
Unable to create Software objects via the ORM without a documentation URL. This function works in the UI.
Nautobot: 1.6.2 DLM Plugin: 1.3.2
https://github.com/nautobot/nautobot-plugin-device-lifecycle-mgmt/blob/a41d76018a060d197d2207a0c30b850b73a72f35/nautobot_device_lifecycle_mgmt/models.py#L164C1-L165C1
I believe this should be:
documentation_url = models.URLField(null=True, blank=True, verbose_name="Documentation URL")
The text was updated successfully, but these errors were encountered:
Generally speaking text fields shouldn't be null=True. Probably the fix here would be to set default="" instead?
null=True
default=""
Sorry, something went wrong.
No branches or pull requests
Unable to create Software objects via the ORM without a documentation URL. This function works in the UI.
Nautobot: 1.6.2
DLM Plugin: 1.3.2
https://github.com/nautobot/nautobot-plugin-device-lifecycle-mgmt/blob/a41d76018a060d197d2207a0c30b850b73a72f35/nautobot_device_lifecycle_mgmt/models.py#L164C1-L165C1
I believe this should be:
The text was updated successfully, but these errors were encountered: