diff --git a/ghost/admin/app/components/modals/theme-warnings.js b/ghost/admin/app/components/modals/theme-warnings.js
index 9876b6fd78..9ab6b60b67 100644
--- a/ghost/admin/app/components/modals/theme-warnings.js
+++ b/ghost/admin/app/components/modals/theme-warnings.js
@@ -7,6 +7,7 @@ export default ModalComponent.extend({
warnings: reads('model.warnings'),
errors: reads('model.errors'),
fatalErrors: reads('model.fatalErrors'),
+ canActivate: reads('model.canActivate'),
'data-test-theme-warnings-modal': true
});
diff --git a/ghost/admin/app/templates/components/modals/theme-warnings.hbs b/ghost/admin/app/templates/components/modals/theme-warnings.hbs
index 1a1c9b1ad3..7d0a41db68 100644
--- a/ghost/admin/app/templates/components/modals/theme-warnings.hbs
+++ b/ghost/admin/app/templates/components/modals/theme-warnings.hbs
@@ -1,5 +1,11 @@
{{title}}
+
+ {{#unless canActivate}}
+ {{title}}
+ {{else}}
+ {{title}} with {{#if errors}}errors{{else}}warnings{{/if}}
+ {{/unless}}
+
- "{{themeName}}" uploaded successfully but some warnings/errors were detected. - You are still able to use and activate the theme. Here is your report... + "{{themeName}}" uploaded successfully but some {{#if validationErrors}}errors{{else}}warnings{{/if}} were detected. + You are still able to use and activate the theme. Here's your report...