fixed subscription listing
This commit is contained in:
parent
8274d148df
commit
33e075ecdc
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ router.post('/ajax', (req, res) => {
|
||||||
recordsFiltered: filteredTotal,
|
recordsFiltered: filteredTotal,
|
||||||
data: data.map((row, i) => [
|
data: data.map((row, i) => [
|
||||||
(Number(req.body.start) || 0) + 1 + i,
|
(Number(req.body.start) || 0) + 1 + i,
|
||||||
'<span class="glyphicon glyphicon-inbox" aria-hidden="true"></span> ' + htmlescape(row.name || ''),
|
'<span class="glyphicon glyphicon-inbox" aria-hidden="true"></span> <a href="/campaigns/view/'+row.id+'">' + htmlescape(row.name || '') + '</a>',
|
||||||
htmlescape(striptags(row.description) || ''),
|
htmlescape(striptags(row.description) || ''),
|
||||||
getStatusText(row),
|
getStatusText(row),
|
||||||
'<span class="datestring" data-date="' + row.created.toISOString() + '" title="' + row.created.toISOString() + '">' + row.created.toISOString() + '</span>'
|
'<span class="datestring" data-date="' + row.created.toISOString() + '" title="' + row.created.toISOString() + '">' + row.created.toISOString() + '</span>'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue