Change terms min max (#372)

This commit is contained in:
Rinat Arsaev 2024-07-01 12:49:13 +05:00 committed by GitHub
parent d14abd1ab2
commit 885d25f2be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ export function createFeesColumns<T extends object>(
formatter: (d) =>
getInlineDecisions(getFees(d), filterFee)
.filter(filterDecisions(d))
.map((v) => v.parts?.min),
.map((v) => v.parts?.max),
},
{
field: 'feeMax',
@ -58,7 +58,7 @@ export function createFeesColumns<T extends object>(
formatter: (d) =>
getInlineDecisions(getFees(d), filterFee)
.filter(filterDecisions(d))
.map((v) => v.parts?.max),
.map((v) => v.parts?.min),
},
{
field: 'other',