We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c026001 commit 81da9b3Copy full SHA for 81da9b3
2 files changed
examples/official-site/sqlpage/migrations/99_shared_id_class_attributes.sql
@@ -7,6 +7,7 @@ FROM (VALUES
7
('code', TRUE),
8
('csv', TRUE),
9
('datagrid', TRUE),
10
+ ('datagrid', FALSE),
11
('hero', TRUE),
12
('list', TRUE),
13
('list', FALSE),
sqlpage/templates/datagrid.handlebars
@@ -21,7 +21,7 @@
21
<div class="card-body">
22
<div class="datagrid">
23
{{#each_row}}
24
- <div class="datagrid-item">
+ <div class="datagrid-item" {{#if id}}id="{{id}}"{{/if}}>
25
<div class="datagrid-title">{{title}}</div>
26
<div class="datagrid-content {{#if active}}fw-bold{{/if}}">
27
{{~#if link}}
0 commit comments