From f9a4802127ae43bc5bb69d8bed32d6d33aac9f43 Mon Sep 17 00:00:00 2001 From: Avris Date: Wed, 16 Sep 2020 22:46:15 +0200 Subject: [PATCH] #53 badge dla form normatywnych - fix --- src/classes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/classes.js b/src/classes.js index 78d91fbb..835f7df8 100644 --- a/src/classes.js +++ b/src/classes.js @@ -176,6 +176,7 @@ export class Template { return new Template( this.canonicalName + '&' + other.canonicalName, Array.isArray(this.description) ? [...this.description, other.description] : [this.description, other.description], + this.normative && other.normative, buildDict(function* (that, other) { for (let morpheme of MORPHEMES) { yield [morpheme, (that.morphemes[morpheme] || '') + '&' + (other.morphemes[morpheme] || '')]