diff --git a/dev-docs/bidders.md b/dev-docs/bidders.md
index a9a7e00653..3cc4851f3e 100644
--- a/dev-docs/bidders.md
+++ b/dev-docs/bidders.md
@@ -81,12 +81,11 @@ The following parameters in the `bidResponse` object are common across all bidde
Bidder |
Supported Media Types |
- Prebid 1.0 Support? |
{% for page in bidder_pages %}
-{% if page.media_types %}
- {{page.biddercode}} | {% if page.media_types contains 'video' and page.media_types contains 'native' %} video, native {% elsif page.media_types contains 'native' %} native {% elsif page.media_types contains 'video' %} video {% endif %} | {% if page.prebid_1_0_supported %}X{% endif %} |
+{% if page.media_types and page.prebid_1_0_supported%}
+ {{page.biddercode}} | {% if page.media_types contains 'video' and page.media_types contains 'native' %} video, native {% elsif page.media_types contains 'native' %} native {% elsif page.media_types contains 'video' %} video {% endif %} |
{% endif %}
{% endfor %}