You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT
category,
sum(sales) as total_sales
from orders
group by category
run the command, choosing the column category as the identifier
run code
Environment
VSCode Extension version (Check in VSCode Marketplace): 1.3.39
Expected Behavior
a working datatable to create the links is created
---
title: Categories
sources:
- categories: categories.sql
---
Click on an item to see more detail
<DataTable data={categories} showLinkCol=true link=category/>
Actual Behaviour
generated code
---
title: Categories
sources:
- categories: categories.sql
---
Click on an item to see more detail
<DataTable data={categories} link=link/>
There is no link column in the query so this does not work as expected
Steps To Reproduce
categoryas the identifierEnvironment
Expected Behavior
a working datatable to create the links is created
Actual Behaviour
generated code
There is no link column in the query so this does not work as expected
Workarounds
include a link column in the query