From: Alexander Goussas Date: Sun, 5 Apr 2026 12:41:56 +0000 (-0500) Subject: feat: export bi-directional definitions X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=07fc0d3c4a70a48680121d925d38e1b5997be461;p=nicos-weg-vocab-exporter-firefox.git feat: export bi-directional definitions Closes #1 --- diff --git a/panel.js b/panel.js index a478836..8318e1b 100644 --- a/panel.js +++ b/panel.js @@ -64,7 +64,8 @@ async function doExport( `; for (const { w, t } of results[0].result) { - s += `"${w}","${t}"\n` + s += `"${w}","${t}"\n`; + s += `"${t}","${w}"\n`; } outputField.innerText = s;