From 4450e888b239d6ea803ae20927d67562274dc2a9 Mon Sep 17 00:00:00 2001 From: helenasabel Date: Mon, 25 Nov 2024 23:12:40 +0100 Subject: [PATCH] fix(pb-authority-lookup): correct typo --- src/authority/gnd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authority/gnd.js b/src/authority/gnd.js index 50266433..e2a0383e 100644 --- a/src/authority/gnd.js +++ b/src/authority/gnd.js @@ -110,7 +110,7 @@ export class GND extends Registry { }) } if (json.firstAuthor && json.firstAuthor.length > 0) { - json.firtAuthor.map((author) => { + json.firstAuthor.map((author) => { output.author = author.label; output.authorId = author.id; })