Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tables: Fix striped tables #5763

Merged
merged 2 commits into from
Jun 3, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cfgov/jinja2/v1/_includes/organisms/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<table class="o-table
{{- ' o-table__row-links' if value.row_links else '' -}}
{{- ' o-table__stack-on-small' if value.is_stacked else '' -}}
{{- ' table__striped' if value.is_striped else '' -}}
{{- ' o-table__striped' if value.is_striped else '' -}}
{{- ' u-w100pct' if value.is_full_width else '' -}}
{{- ' o-table__sortable' if value.is_sortable else '' -}}">
{% set row_index = 0 %}
Expand Down