From b4735c7b8e80d1149d9aa1c682b49d6b36d7d626 Mon Sep 17 00:00:00 2001 From: Mo Bitar Date: Wed, 25 Jul 2018 08:46:27 -0500 Subject: [PATCH] Session history metadata change label --- app/assets/javascripts/app/models/noteHistoryEntry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } } }