fix: show correct unlinked files count (#653)

This commit is contained in:
SkeleyM
2024-12-22 20:21:04 +00:00
committed by GitHub
parent b209abb1a4
commit 4c3ff42169

View File

@@ -144,4 +144,4 @@ class FixUnlinkedEntriesModal(QWidget):
# disable buttons if there are no files to fix
self.search_button.setDisabled(self.missing_count == 0)
self.delete_button.setDisabled(self.missing_count == 0)
self.missing_count_label.setText(f"Unlinked Entries: {count}")
self.missing_count_label.setText(f"Unlinked Entries: {self.missing_count}")