Hey, using the react ui we're able to embeded a re...
# gooddata-ui
d
Hey, using the react ui we're able to embeded a report with the dashboard component. However is there a way to get it to filter to a specific id and also hide the buttons?
m
do you mean applying filters to your plugin?
i mean for this "However is there a way to get it to filter to a specific id"
d
We solved it by setting the permissions in the workspace and then we'll change the workspace id to the workspace id that we'll include in the user that's logged in on our page.
r
Hi David, that's a good idea! By the way, I noticed in your screenshot that the icons in your embedding are showing as empty squares - if you're using Vite, you can resolve that by setting the following in your `vite.config.js`:
Copy code
resolve: {
        alias: {
            "~@gooddata": "/node_modules/@gooddata",
        },
    },
🙂
d
Thanks, I was wondering why that didn't work 🙂