diff --git a/app/components/version-list/row.hbs b/app/components/version-list/row.hbs
index 1764696995a..5ddadc98f28 100644
--- a/app/components/version-list/row.hbs
+++ b/app/components/version-list/row.hbs
@@ -58,37 +58,41 @@
-
- {{#if @version.crate_size}}
-
- {{svg-jar "weight"}}
- {{pretty-bytes @version.crate_size}}
-
- {{/if}}
+ {{#if (or @version.crate_size @version.license @version.featureList)}}
+
+ {{#if @version.crate_size}}
+
+ {{svg-jar "weight"}}
+ {{pretty-bytes @version.crate_size}}
+
+ {{/if}}
-
- {{svg-jar "license"}}
-
-
+ {{#if @version.license}}
+
+ {{svg-jar "license"}}
+
+
+ {{/if}}
- {{#if @version.featureList}}
-
- {{svg-jar "checkbox"}}
- {{@version.featureList.length}} {{if (eq @version.featureList.length 1) "Feature" "Features"}}
+ {{#if @version.featureList}}
+
+ {{svg-jar "checkbox"}}
+ {{@version.featureList.length}} {{if (eq @version.featureList.length 1) "Feature" "Features"}}
-
-
- {{#each @version.featureList as |feature|}}
- -
- {{svg-jar (if feature.isDefault "checkbox" "checkbox-empty")}}
- {{feature.name}}
-
- {{/each}}
-
-
-
- {{/if}}
-
+
+
+ {{#each @version.featureList as |feature|}}
+ -
+ {{svg-jar (if feature.isDefault "checkbox" "checkbox-empty")}}
+ {{feature.name}}
+
+ {{/each}}
+
+
+
+ {{/if}}
+
+ {{/if}}
{{#if this.isOwner}}