Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
fix empty values from info
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Aug 24, 2022
1 parent d0036ac commit a83f7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/tools/settings/settings/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, message, title, info_obj, parent=None):
):
other_information_layout.addRow(
label,
QtWidgets.QLabel(value, other_information)
QtWidgets.QLabel(value or "N/A", other_information)
)

timestamp_label = QtWidgets.QLabel(
Expand Down

0 comments on commit a83f7b5

Please sign in to comment.