diff --git a/app/assets/javascripts/app/models/noteHistoryEntry.js b/app/assets/javascripts/app/models/noteHistoryEntry.js index 38414d88f..51831cc40 100644 --- a/app/assets/javascripts/app/models/noteHistoryEntry.js +++ b/app/assets/javascripts/app/models/noteHistoryEntry.js @@ -12,7 +12,7 @@ class NoteHistoryEntry extends SFItemHistoryEntry { } else if(this.textCharDiffLength > 0) { return `${this.textCharDiffLength} characters added` } else { - return "Title changed" + return "Title or metadata changed" } } }