From 2d08316e36b72efd4e9e680b961a1b445ec1b7f3 Mon Sep 17 00:00:00 2001 From: Denny Bresch Date: Mon, 24 Jun 2019 16:29:47 +0200 Subject: [PATCH] Fixed issue #2615 - Misleading 'Escalation' ticket attribute name in SLAs, Scheduler and Trigger should be named 'Escalation_at'. --- app/assets/javascripts/app/models/ticket.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/app/models/ticket.coffee b/app/assets/javascripts/app/models/ticket.coffee index dcd57d3b4..fa9c3ad8f 100644 --- a/app/assets/javascripts/app/models/ticket.coffee +++ b/app/assets/javascripts/app/models/ticket.coffee @@ -14,7 +14,7 @@ class App.Ticket extends App.Model { name: 'priority_id', display: 'Priority', tag: 'select', multiple: false, null: false, relation: 'TicketPriority', default: '2 normal', width: '54px', edit: true, customer: true }, { name: 'article_count', display: 'Article#', readonly: 1, width: '12%' }, { name: 'time_unit', display: 'Accounted Time', readonly: 1, width: '12%' }, - { name: 'escalation_at', display: 'Escalation', tag: 'datetime', null: true, readonly: 1, width: '110px', class: 'escalation' }, + { name: 'escalation_at', display: 'Escalation at', tag: 'datetime', null: true, readonly: 1, width: '110px', class: 'escalation' }, { name: 'last_contact_at', display: 'Last contact', tag: 'datetime', null: true, readonly: 1, width: '110px' }, { name: 'last_contact_agent_at', display: 'Last contact (agent)', tag: 'datetime', null: true, readonly: 1, width: '110px' }, { name: 'last_contact_customer_at', display: 'Last contact (customer)', tag: 'datetime', null: true, readonly: 1, width: '110px' },