David Davó

Results 174 comments of David Davó

I added some prints to the file to know which package failed. It was a package in a folder, with an entry like this: ```yarn tldraw-logseq@../apps/tldraw-logseq: version "0.0.0-dev" ``` It...

Is there any alternative to use tablenotes?

If we plan to continue developing the cache scripts, they might need to be moved to another repository. After all, the package even has its own version number. Furthermore, there...

That's why I think that, in the case on wanting to extend the cache_scritps, we should create another repo. That way we wouldn't need to keep updating this one.

In old versions, before adding the filters, the dropdown was generated directly in the layout. Perhaps we could generate the DropDown again in the layout, and prevent the first call...

The main purpose of this issue is to make the initial call to org_filters not necessary, and do everything inside `dashboard_view.__generate_header`. To do this, we will have to: - [...

I'm also having problems to use `prevent_initial_call`, because of [this](https://dash.plotly.com/advanced-callbacks#prevent-callback-execution-upon-initial-component-render): > However, the above behavior only applies if both the callback output and input are present in the app layout...

I've added the Dropdown to the __generate_header function. I don't think there's much improvement. `dash.no_update` won't do because we need to "trigger" the following callbacks (the platform info and graphs)....

About the first option, there are some callbacks that read information from the dropdown. This is because they generate an `OrganizationList` from the filtered options available in the dropdown. In...

If we want to create a custom component, we'll need to use: - https://dash.plotly.com/react-for-python-developers - https://github.com/plotly/dash-component-boilerplate - https://dash.plotly.com/plugins Some community made components are: - https://community.plotly.com/t/community-components-index/60098 The main problem with our...