evidence-dev / evidence

Business intelligence as code: build fast, interactive data visualizations in pure SQL and markdown
https://evidence.dev
MIT License
4.47k stars 215 forks source link

[Bug]: Error component in front of dropdown #2719

Closed archiewood closed 2 weeks ago

archiewood commented 2 weeks ago

Describe the bug

Error component is displayed in front of dropdown (and some other components). It should be behind.

Image

Steps to Reproduce

---
title: Welcome to Evidence
---

<Details title='How to edit this page'>

  This page can be found in your project at `/pages/index.md`. Make a change to the markdown file and save it to see the change take effect in your browser.
</Details>

```sql categories
  select
      category
  from needful_things.orders
  group by category
```sql orders_by_category select date_trunc('month', order_datetime) as month, sum(sales) as sales_usd, category from needful_things.orders where category like '${inputs.category.value}' and date_part('yea', order_datetime) like '${inputs.year.value}' group by all order by sales_usd desc ``` ````