From 83fa4552f264235a86cd6aa5769fc38f746ee163 Mon Sep 17 00:00:00 2001 From: Gerhard Jungwirth Date: Mon, 24 Mar 2014 09:18:25 +0100 Subject: [PATCH] MT#4369 use min_timestamp to really display the time, the call started --- lib/NGCP/Panel/Controller/Callflow.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NGCP/Panel/Controller/Callflow.pm b/lib/NGCP/Panel/Controller/Callflow.pm index c96a799282..d483f8db49 100644 --- a/lib/NGCP/Panel/Controller/Callflow.pm +++ b/lib/NGCP/Panel/Controller/Callflow.pm @@ -21,7 +21,7 @@ sub root :Chained('/') :PathPart('callflow') :CaptureArgs(0) { my ( $self, $c ) = @_; $c->stash->{capture_dt_columns} = NGCP::Panel::Utils::Datatables::set_columns($c, [ - { name => "timestamp", search => 0, title => $c->loc('Timestamp') }, + { name => "min_timestamp", search => 0, title => $c->loc('Timestamp') }, { name => "call_id", search => 1, title => $c->loc('Call-ID') }, { name => "caller_uuid", search => 1, title => $c->loc('Caller UUID') }, { name => "callee_uuid", search => 1, title => $c->loc('Callee UUID') },