Niko Föhr

Results 171 comments of Niko Föhr
trafficstars

Reporting the same problem as @seshadribpl and @dskripka . OS: Ubuntu 22.04.02 LTS Installation type: Ubuntu Software shows "ubuntu-jammy-universe (deb)" as source. Qt version: 5.15.3 Notepadqq version: v.2.0.0-beta+git Usually when...

One workaround for this is to set the sidebar "ul" element height to 100% ```python css = """ #sidebar > ul { height: 100%; } """ pn.extension(template="fast", raw_css=[css]) ``` ![image](https://github.com/holoviz/panel/assets/17479683/cf278562-1c7f-426f-9e04-4c9f629d37d5)...

Also note that the problem when adding a card seems to require a Card inside a Card. If you replace ``` main_card = pn.Card() ``` with ``` main_card = pn.Column()...

I think this is fairly easy to fix. A quick and dirty modification in `numpydoc/docscrape.py::ClassDoc` does it Change `ClassDoc.properties` to ```python @property def properties(self): if self._cls is None: return []...

Thanks for filing the issue @afkrause ! This should be a really easy fix.

Simply running ``` git clone https://github.com/mrwiora/NAMEinator.git cd NAMEinator go build ``` will work.

Hi @salvocamiolo , I'm glad you like the dash-uploader. My suggestions would be: **Option A**: - Use a hack with `@app.callback`. This is purely a hack and depends on implementation...

and also, **Option C** - Chained callbacks: Use a separate `@app.callback` after the `@du.callback` which could read the folder from the input and the actual file from `@du.callback`. Did not...

So this would be possible if there were a list of attributes for `"file-uploader"` component that could be listened. If I remember correctly, you can listen to any props of...