From 191d0b9434d7a583c4b230c04995a5d62d53bc0e Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 16 Sep 2019 11:53:33 -0400 Subject: [PATCH] Add link to Achavi changeset inspector tool to the History panel (close #6855) --- modules/ui/panels/history.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/ui/panels/history.js b/modules/ui/panels/history.js index 008d95546..507fd4855 100644 --- a/modules/ui/panels/history.js +++ b/modules/ui/panels/history.js @@ -90,6 +90,14 @@ export function uiPanelHistory(context) { .attr('target', '_blank') .attr('tabindex', -1) .text('OSMCha'); + + links + .append('a') + .attr('class', 'changeset-achavi-link') + .attr('href', 'https://overpass-api.de/achavi/?changeset=' + changeset) + .attr('target', '_blank') + .attr('tabindex', -1) + .text('Achavi'); }