reset first when selecting subgroup (#34200)
fixes: #34149 Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
parent
d1504e4657
commit
cc5b8dfd38
2 changed files with 1530 additions and 2 deletions
|
@ -232,7 +232,10 @@ export const GroupPickerDialog = ({
|
|||
key={group.id}
|
||||
group={group}
|
||||
isRowDisabled={isRowDisabled}
|
||||
onSelect={setGroupId}
|
||||
onSelect={(groupId) => {
|
||||
setGroupId(groupId);
|
||||
setFirst(0);
|
||||
}}
|
||||
type={type}
|
||||
isSearching={isSearching}
|
||||
setIsSearching={setIsSearching}
|
||||
|
@ -247,7 +250,10 @@ export const GroupPickerDialog = ({
|
|||
key={g.id}
|
||||
group={g}
|
||||
isRowDisabled={isRowDisabled}
|
||||
onSelect={setGroupId}
|
||||
onSelect={(groupId) => {
|
||||
setGroupId(groupId);
|
||||
setFirst(0);
|
||||
}}
|
||||
type={type}
|
||||
isSearching={isSearching}
|
||||
setIsSearching={setIsSearching}
|
||||
|
|
1522
model/infinispan/proto.lock
Normal file
1522
model/infinispan/proto.lock
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue