mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
order is converted to string
This commit is contained in:
parent
1e7be786eb
commit
7e4da0761d
1 changed files with 3 additions and 3 deletions
|
|
@ -446,9 +446,9 @@ class PluginDetailsWidget(QtWidgets.QWidget):
|
|||
if plugin_item.families:
|
||||
families = ", ".join(plugin_item.families)
|
||||
|
||||
order = plugin_item.order
|
||||
if order is None:
|
||||
order = "N/A"
|
||||
order = "N/A"
|
||||
if plugin_item.order is not None:
|
||||
order = str(plugin_item.order)
|
||||
|
||||
plugin_label_widget.setText(plugin_label)
|
||||
plugin_doc_widget.setText(plugin_item.docstring or "N/A")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue