decaf-dev / obsidian-dataloom

Weave together data from diverse sources and display them in different views. Inspired by Excel spreadsheets and Notion.so.
https://dataloom.xyz/
MIT License
899 stars 32 forks source link

Frontmatter options in a column become too long, it doesn't fit screen! #935

Open Michael679089 opened 3 months ago

Michael679089 commented 3 months ago

Describe the bug

image

Steps to reproduce

Add a lot of front matter in your vault, apparently Dataloom reads it all.

Check if front matter options is too much.

Expected behavior

I expect that dataloom plugin will read all frontmatter.

Are you using the mobile app?

No

Obsidian debug info

There's none.

Relevant log output

No response

paoloap-py commented 3 months ago

I'm having the same issue, which renders the plugin unusable... any ETA solution?

tjaska commented 3 months ago

Same issue here.

A workaround with CSS, you need to use a CSS snippet to customize the appearance (Options -> Appearance -> CSS snippets):

.dataloom-menu {
  max-height: 50%;
  overflow: auto;
}

Result is a scrollbar and ability to navigate back and "Clear" image

paoloap-py commented 3 months ago

thanks for sharing.

where shall I implement this css snippet? I'm totally new to it.

tjaska commented 3 months ago

thanks for sharing.

where shall I implement this css snippet? I'm totally new to it.

The CSS snippets is a built-in Obsidian feature, following these steps should help: https://help.obsidian.md/Extending+Obsidian/CSS+snippets

Essentially you create a CSS file in the correct folder and add the above CSS code to it. Obsidian should then be able to read and apply these styles automatically.