sorting tags on webpage, added tags to AtParty importer

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-01-03 22:00:51 +01:00
parent d2abe7ae60
commit f111d77b9b
2 changed files with 15 additions and 5 deletions
@@ -19,6 +19,7 @@ function addRow(json){
var row = table.insertRow(1);
row.id = json.id;
if (json.tags){
json.tags.sort();
var tagList = json.tags.join(' ');
row.setAttribute('class',tagList);
}