powerpipe
powerpipe copied to clipboard
category href not working
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