Add PD/Town name for TG import

This commit is contained in:
Logan
2026-05-25 16:42:09 -04:00
parent c5932165d8
commit fa5c53891c
+1 -1
View File
@@ -224,7 +224,7 @@ function RRImportModal({
for (const tg of cat.talkgroups) {
tgs.push({
id: String(tg.dec),
name: tg.description || tg.alphaTag,
name: `${cat.name.split(" - ")[0]} - ${tg.description || tg.alphaTag}`,
tag: mapRRTag(tg.tag),
});
}