mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-10 23:11:01 +00:00
fix secondary sort field for sum case
This commit is contained in:
parent
986f1f1d0f
commit
9c8b272bb0
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ export const GroupBySort: FC<GroupBySortProps> = ({
|
|||
<Select
|
||||
className={css.fieldSelect}
|
||||
label="Field"
|
||||
value={sort[0].field ? sort[0].field : ''}
|
||||
value={sort[1].field ? sort[1].field : ''}
|
||||
options={fields}
|
||||
onChange={(value) => onUpdateSumField(false, value)}
|
||||
error={showErrors ? !sort[1].field : false}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue