HMS-3796: Add snapshot date selection to wizard
This commit is contained in:
parent
a97b4d082d
commit
3231b324f0
42 changed files with 1958 additions and 257 deletions
|
|
@ -351,7 +351,11 @@ const Repositories = () => {
|
|||
|
||||
const handleSelectAll = () => {
|
||||
if (data) {
|
||||
updateSelected(data.data?.map((repo) => repo.url) || []);
|
||||
updateSelected(
|
||||
data.data
|
||||
?.filter(({ status }) => status === 'Valid')
|
||||
.map((repo) => repo.url) || []
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue