From c83a85117d6e25b1fe710abc21a62b9176177005 Mon Sep 17 00:00:00 2001 From: John McLear Date: Sun, 21 Feb 2021 16:43:16 +0000 Subject: [PATCH] tidy up: is always true --- src/static/js/Changeset.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/Changeset.js b/src/static/js/Changeset.js index 75bb92b20..b47979c19 100644 --- a/src/static/js/Changeset.js +++ b/src/static/js/Changeset.js @@ -1759,7 +1759,7 @@ exports.makeAttribsString = (opcode, attribs, pool) => { return ''; } else if ((typeof attribs) === 'string') { return attribs; - } else if (pool && attribs && attribs.length) { + } else if (pool && attribs.length) { if (attribs.length > 1) { attribs = attribs.slice(); attribs.sort();