Skip to content

Commit

Permalink
CORE-4993: 10 item restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
ekachxaidze98 committed Dec 12, 2024
1 parent 2efe3d4 commit efd89fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/sdg/table/sdgTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const SdgTable = observer(
className={styles.sdgTable}
isHeaderClickable
rowIdentifier="articleId"
data={sdgTableList}
data={checkBillingType ? sdgTableList.slice(0, 10) : sdgTableList}
size={sdgTableList?.length}
totalLength={formatNumber(outputCount)}
rowClick={(row) => onSetActiveArticle(row)}
Expand Down

0 comments on commit efd89fb

Please sign in to comment.