diff --git a/src/store/notion.js b/src/store/notion.js index 26468c1..b88d231 100644 --- a/src/store/notion.js +++ b/src/store/notion.js @@ -29,7 +29,8 @@ const FORMATS = { ] }, rich_text(val) { - return this.title(val); + const valFitin = val.length <= 2000 ? val : val.substring(0, 2000); + return this.title(valFitin); }, number(val) { return Number(val);