Commit 37ebe5d8 authored by Winnie Hellmann's avatar Winnie Hellmann Committed by Kamil Trzciński

Display column headers of feature flag table on small screen

parent 9494a374
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
.gl-responsive-table-row{ role: 'row' } .gl-responsive-table-row{ role: 'row' }
.table-section.section-10{ role: 'gridcell' } .table-section.section-10{ role: 'gridcell' }
.table-mobile-header{ role: "rowheader" }= s_('FeatureFlags|Status')
.table-mobile-content
- if feature_flag.active? - if feature_flag.active?
%span.badge.badge-success %span.badge.badge-success
= s_('FeatureFlags|Active') = s_('FeatureFlags|Active')
...@@ -14,7 +16,9 @@ ...@@ -14,7 +16,9 @@
%span.badge.badge-danger %span.badge.badge-danger
= s_('FeatureFlags|Inactive') = s_('FeatureFlags|Inactive')
.table-section.section-50.d-flex.flex-column{ role: 'gridcell' } .table-section.section-50{ role: 'gridcell' }
.table-mobile-header{ role: "rowheader" }= s_('FeatureFlags|Feature Flag')
.table-mobile-content.d-flex.flex-column
.text-monospace= feature_flag.name .text-monospace= feature_flag.name
.text-secondary= feature_flag.description .text-secondary= feature_flag.description
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment