You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Frontend/src/components/messages/BodyView.vue
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ const body = computed(() => bodyState.value.data.value);
25
25
<divv-if="bodyState.not_found"class="alert alert-info">Could not find the message body. This could be because the message URL is invalid or the corresponding message was processed and is no longer tracked by ServiceControl.</div>
26
26
<divv-else-if="bodyState.failed_to_load"class="alert alert-info">Message body unavailable.</div>
27
27
<LoadingSpinnerv-else-if="bodyState.loading" />
28
+
<divv-else-if="body === ''"class="alert alert-info">Body was too large and not stored. Edit ServiceControl/MaxBodySizeToStore to be larger in the ServiceControl configuration.</div>
<divv-else-if="body && !contentType.isSupported"class="alert alert-warning">Message body cannot be displayed because content type "{{ bodyState.data.content_type }}" is not supported.</div>
0 commit comments