use correct appId when searching for users by app

This commit is contained in:
Peter Clement 2022-08-01 15:16:00 +01:00
parent 64381eee81
commit 4a148bd9ab
1 changed files with 5 additions and 3 deletions

View File

@ -5,7 +5,7 @@
import { store } from "builderStore" import { store } from "builderStore"
import clientPackage from "@budibase/client/package.json" import clientPackage from "@budibase/client/package.json"
import { processStringSync } from "@budibase/string-templates" import { processStringSync } from "@budibase/string-templates"
import { users, auth } from "stores/portal" import { users, auth, apps } from "stores/portal"
import { createEventDispatcher, onMount } from "svelte" import { createEventDispatcher, onMount } from "svelte"
export let app export let app
@ -40,9 +40,11 @@
} }
onMount(async () => { onMount(async () => {
let resp = await users.getUserCountByApp({ appId: "app_" + app.appId }) let resp = await users.getUserCountByApp({
appId: apps.getProdAppID(app.devId),
})
userCount = resp.userCount userCount = resp.userCount
await users.search({ appId: "app_" + app.appId, limit: 4 }) await users.search({ appId: apps.getProdAppID(app.devId), limit: 4 })
}) })
</script> </script>