Skip to content

Commit

Permalink
Clicking the error no longer has an effect
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing committed Mar 19, 2024
1 parent 70b5b0f commit c41c4d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/folderstatusmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ QVariant FolderStatusModel::data(const QModelIndex &index, int role) const
errors.append(legacyError.error());
}
if (f->syncResult().hasUnresolvedConflicts()) {
errors.append(tr("There are unresolved conflicts. Click for details."));
errors.append(tr("There are unresolved conflicts."));
}
if (f->isReady() && f->virtualFilesEnabled() && f->vfs().mode() == Vfs::Mode::WithSuffix) {
errors.append({
Expand Down

0 comments on commit c41c4d2

Please sign in to comment.