diff options
Diffstat (limited to 'app/models/state_note.rb')
-rw-r--r-- | app/models/state_note.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/state_note.rb b/app/models/state_note.rb index 5e35f15aac4..93c025a9bf0 100644 --- a/app/models/state_note.rb +++ b/app/models/state_note.rb @@ -18,11 +18,11 @@ class StateNote < SyntheticNote def note_text(html: false) if event.state == 'closed' if event.close_after_error_tracking_resolve - return 'resolved the corresponding error and closed the issue.' + return 'resolved the corresponding error and closed the issue' end if event.close_auto_resolve_prometheus_alert - return 'automatically closed this issue because the alert resolved.' + return 'automatically closed this incident because the alert resolved' end end |