turbot / powerpipe

Powerpipe: Dashboards for DevOps. Visualize cloud configurations. Assess security posture against a massive library of benchmarks. Build custom dashboards with code.
https://powerpipe.io/
GNU Affero General Public License v3.0
228 stars 16 forks source link

category href not working #304

Closed judell closed 2 months ago

judell commented 4 months ago

To reproduce, try this in both Steampipe dashboard (the link is hot) and Powerpipe (it isn't).

dashboard "category_test" {

  graph {

    node "test" {

      category = category.jon

      sql = <<EOQ
        with data as (
           select 
              1 as id,
              'test' as title
        )
        select
           id,
           title
        from
           data
        EOQ
    }
  }
}

category "jon" {
  icon = "person"
  href = "https://jonudell.info"
}

Possibly related: #163

github-actions[bot] commented 2 months ago

This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.

judell commented 2 months ago

Looks like it's fixed, thank you!