File tree Expand file tree Collapse file tree
macros/edr/system/system_utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 {% set column_nodes = parent_model .get (" columns" ) %}
3939 {% if not column_nodes %} {% do return(pii_columns) %} {% endif %}
4040
41- {% set enable_show_tags = elementary .get_config_var (" enable_samples_on_show_sample_rows_tags" ) %}
41+ {% set enable_show_tags = elementary .get_config_var (
42+ " enable_samples_on_show_sample_rows_tags"
43+ ) %}
4244 {% set raw_show_tags = elementary .get_config_var (" show_sample_rows_tags" ) %}
4345 {% set show_tags = (
4446 (raw_show_tags if raw_show_tags is iterable else [raw_show_tags])
45- | map(" lower" ) | list
47+ | map(" lower" )
48+ | list
4649 ) %}
4750
4851 {% for column_node in column_nodes .values () %}
4952 {% set all_column_tags_lower = elementary .get_column_tags (column_node) %}
5053
5154 {# Skip columns explicitly tagged to show sample rows (if feature is enabled) #}
52- {% if enable_show_tags and elementary .lists_intersection (all_column_tags_lower, show_tags) | length > 0 %}
55+ {% if enable_show_tags and elementary .lists_intersection (
56+ all_column_tags_lower, show_tags
57+ ) | length > 0 %}
5358 {% continue %}
5459 {% endif %}
5560
You can’t perform that action at this time.
0 commit comments