diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index fca641d13..5fa8e7542 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -3679,6 +3679,10 @@ Error: %1 Auto-Type + + Tags + + EntryModel diff --git a/src/gui/entry/EntryHistoryModel.cpp b/src/gui/entry/EntryHistoryModel.cpp index ac70c2e66..acde63cb5 100644 --- a/src/gui/entry/EntryHistoryModel.cpp +++ b/src/gui/entry/EntryHistoryModel.cpp @@ -246,6 +246,9 @@ void EntryHistoryModel::calculateHistoryModifications() || curr->defaultAutoTypeSequence() != compare->defaultAutoTypeSequence()) { modifiedFields << tr("Auto-Type"); } + if (curr->tags() != compare->tags()) { + modifiedFields << tr("Tags"); + } m_historyModifications << modifiedFields.join(", ");