Skip to content

Commit 0839e11

Browse files
Apply suggestions from code review
Co-authored-by: Phil Bastian <[email protected]>
1 parent 0a77661 commit 0839e11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Frontend/src/components/messages2/BodyView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const body = computed(() => bodyState.value.data.value);
2121
</script>
2222

2323
<template>
24-
<div v-if="bodyState.not_found" class="alert alert-info">Could not find 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>
24+
<div v-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>
2525
<div v-else-if="bodyState.failed_to_load" class="alert alert-info">Message body unavailable.</div>
2626
<LoadingSpinner v-else-if="bodyState.loading" />
2727
<CodeEditor v-else-if="body !== undefined && contentType.isSupported" :model-value="body" :language="contentType.language" :read-only="true" :show-gutter="true"></CodeEditor>

src/Frontend/src/components/messages2/DeleteMessageButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const handleConfirm = async () => {
3535
@cancel="isConfirmDialogVisible = false"
3636
@confirm="handleConfirm"
3737
heading="Are you sure you want to delete this message?"
38-
body="If you delete, this message won't be available for retrying unless it is later restored."
38+
body="If it is deleted, this message won't be available for retrying unless it is later restored."
3939
/>
4040
</Teleport>
4141
</template>

0 commit comments

Comments
 (0)