This commit is contained in:
Ignacio Serantes
2026-05-07 09:58:49 +02:00
parent 8025bef8d3
commit 0d3d5ffa11
4 changed files with 10 additions and 5 deletions

View File

@@ -414,7 +414,7 @@ class TagEditWidget(QWidget):
if not full_path:
return ""
words = full_path.replace('/', ' ').split()
search_terms = [f"tags:'{word}'" for word in words if word]
search_terms = [f"tags='{word}'" for word in words if word]
return " ".join(search_terms)
def _get_current_query_text(self):