diff --git a/ghost/admin/app/components/posts/debug.hbs b/ghost/admin/app/components/posts/debug.hbs index 9eabdffab3..841fa744d9 100644 --- a/ghost/admin/app/components/posts/debug.hbs +++ b/ghost/admin/app/components/posts/debug.hbs @@ -330,19 +330,19 @@ {{#if (or batch.providerId batch.errorStatusCode batch.errorMessage)}}
{{#if batch.providerId}} -
Provider id: - - {{batch.providerId}} - -
+
Provider id: + + {{batch.providerId}} + +
{{/if}} {{#if batch.errorStatusCode}} -
- Failure status code: {{batch.errorStatusCode}} -
+
+ Failure status code: {{batch.errorStatusCode}} +
{{/if}} {{#if batch.errorMessage}} - {{batch.errorMessage}} + {{batch.errorMessage}} {{/if}}
{{#if batch.errorMessage}} @@ -355,6 +355,13 @@ {{/each}} + {{#unless this.emailBatchesData}} + + +
No batch data.
+ + + {{/unless}} {{!--
Failed @@ -373,7 +380,7 @@
Provider id: 20220824043031.b31949925525913d@m.ghost.io
Failure status code: 500
- Mailgun Error 500: Internal server error + Mailgun Error 500: Internal server error
{{svg-jar "download" title="Download full failure message"}}
diff --git a/ghost/admin/app/styles/layouts/settings.css b/ghost/admin/app/styles/layouts/settings.css index 7cf07f0e99..dcd53acf9d 100644 --- a/ghost/admin/app/styles/layouts/settings.css +++ b/ghost/admin/app/styles/layouts/settings.css @@ -3315,7 +3315,7 @@ p.theme-validation-details { } .gh-email-debug-batch-col-status .failed { - color: var(--red); + color: color-mod(var(--red) l(-2%)); } .gh-email-debug-batch-col-status .failed::before { @@ -3352,6 +3352,11 @@ p.theme-validation-details { word-break: break-all; } +.gh-email-debug-batch-col-details .error { + color: color-mod(var(--red) l(-2%)); + font-weight: unset; +} + .gh-email-debug-batch-col-segment span { display: inline-block; border-radius: 2px; @@ -3439,12 +3444,12 @@ p.theme-validation-details { } .gh-email-debug-readmore-error span { - max-width: calc(100%-100px); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; - color: color-mod(var(--red) l(-8%)); + color: color-mod(var(--red) l(-2%)); + word-break: break-all; } .gh-email-debug-readmore-error .toggle-checkbox:checked ~ span { @@ -3452,6 +3457,7 @@ p.theme-validation-details { -webkit-box-orient: unset; -webkit-line-clamp: unset; overflow: unset; + word-break: break-word; } .gh-email-debug-readmore-error .toggle-checkbox:checked ~ label { @@ -3475,5 +3481,6 @@ p.theme-validation-details { border-radius: 2px; height: 14px; margin-top: 3px; + margin-left: 8px; background: var(--whitegrey); } \ No newline at end of file