Skip to content
Snippets Groups Projects
Verified Commit d5c4aead authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

admin/deposit: Extract origin from swh_anchor_id according to latest change

Related to T1398
Related to T2409
parent 3bbc62e2
No related branches found
No related tags found
1 merge request!319admin/deposit: Extract origin from swh_anchor_id according to latest change
/**
* Copyright (C) 2018-2019 The Software Heritage developers
* Copyright (C) 2018-2020 The Software Heritage developers
* See the AUTHORS file at the top-level directory of this distribution
* License: GNU Affero General Public License version 3, or any later version
* See top-level LICENSE file for more information
......@@ -40,6 +40,11 @@ export function initDepositAdmin() {
let originPatternIdx = data.indexOf(originPattern);
if (originPatternIdx !== -1) {
let originUrl = data.slice(originPatternIdx + originPattern.length);
let nextSepPattern = ';';
let nextSepPatternIdx = originUrl.indexOf(nextSepPattern);
if (nextSepPatternIdx !== -1) { /* Remove extra context */
originUrl = originUrl.slice(0, nextSepPatternIdx);
}
return `<a href="${originUrl}">${originUrl}</a>`;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment