Skip to content

Commit

Permalink
Fix: search when vaultKind (#8255)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraggle authored Oct 25, 2024
1 parent 973410d commit 32be1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/lib/resources/data_source_view_resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ export class DataSourceViewResource extends ResourceWithSpace<DataSourceViewMode
if (value && key !== "vaultKind") {
whereClause[key] = value;
} else {
whereClause["$vault.kind$"] = searchParams.vaultKind;
whereClause["$space.kind$"] = searchParams.vaultKind;
}
}

Expand Down

0 comments on commit 32be1ae

Please sign in to comment.