powerpipe icon indicating copy to clipboard operation
powerpipe copied to clipboard

category href not working

Open judell opened this issue 10 months ago • 0 comments

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

judell avatar Mar 27 '24 21:03 judell