From 0bcff5f7335ec77e524c81ece62e4f1c5f2e745b Mon Sep 17 00:00:00 2001 From: Yotam Nachum Date: Fri, 14 Apr 2023 16:10:04 +0300 Subject: [PATCH] Fix formatting --- lib/class-factory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/class-factory.js b/lib/class-factory.js index de530fe..b0a7251 100644 --- a/lib/class-factory.js +++ b/lib/class-factory.js @@ -2166,7 +2166,7 @@ Object.defineProperties(Field.prototype, { \tvalue: ${this.value}, }`; return multilineString.split('\n').map(l => l.length > 200 ? l.slice(0, l.indexOf(' ') + 1) + '...,' : l).join('\n'); - }, + } } });