Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <[email protected]>
  • Loading branch information
igorDykhta committed Jan 27, 2025
1 parent ecab312 commit 52739c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ai-assistant/src/tools/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ export function highlightRowsByColumnValues(
acc[value] = index;
return acc;
}, {});
// @ts-expect-error need to fix the type error of value here
const selectedIndices = selectedValues.map(value => valueDict[value]);
// need to fix the type error of value here
const selectedIndices = selectedValues.map(value => valueDict[value as any]);
// highlight the rows
highlightRows(datasets, layers, datasetName, selectedIndices, layerSetIsValid);
}
Expand Down
3 changes: 3 additions & 0 deletions src/duckdb/src/table/duckdb-table-utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: MIT
// Copyright contributors to the kepler.gl project

// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
Expand Down

0 comments on commit 52739c3

Please sign in to comment.