Fix export tg name
This commit is contained in:
parent
2c401af85d
commit
4fec354461
1 changed files with 1 additions and 1 deletions
|
|
@ -567,7 +567,7 @@
|
|||
var locale = CPS_LOCALE[lang] || CPS_LOCALE["de"];
|
||||
var rows = [CPS_CSV_HEADER, locale.header2];
|
||||
talkgroups.forEach(function (tg) {
|
||||
var name = ("TG" + tg.id + " " + (tg.name || "")).trim().substring(0, 16);
|
||||
var name = (tg.name || "TG" + tg.id).trim().substring(0, 16);
|
||||
var row = name + ",False,,," +
|
||||
"False,,," +
|
||||
"False,,,,,,," +
|
||||
|
|
|
|||
Loading…
Reference in a new issue