Skip to content

Commit

Permalink
fixing users select by query id
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtamaki committed Sep 16, 2022
1 parent 150aae3 commit 0a2b7da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/looker_admin_power_pack.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manifest.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ constant: CONNECTION_NAME {
}

constant: VERSION {
value: "v1.0.2"
value: "v1.0.4"
}
2 changes: 1 addition & 1 deletion src/users/ActionsBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ export function ActionsBar(props) {
return
}

const ids = new Set(results.map(row => row['user.id']))
const ids = new Set(results.map(row => row['user.id'].toString()))
log(`Found ${results.length} rows; ${ids.size} distinct user ids`)

await props.setNewSelectedUserIds(ids)
Expand Down

0 comments on commit 0a2b7da

Please sign in to comment.