mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
fix: history cannot render datetime instances
This commit is contained in:
@@ -34,7 +34,7 @@ class HistoryDialog(QDialog):
|
||||
|
||||
for col, key in enumerate(sorted(commit.keys())):
|
||||
item = QTableWidgetItem()
|
||||
item.setText(commit[key])
|
||||
item.setText(str(commit[key]))
|
||||
item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled)
|
||||
|
||||
if current_status:
|
||||
|
||||
Reference in New Issue
Block a user