diff --git a/assets/components/LogEventSource.spec.js b/assets/components/LogEventSource.spec.js
index 7e0981f8..b0f4f2b9 100644
--- a/assets/components/LogEventSource.spec.js
+++ b/assets/components/LogEventSource.spec.js
@@ -144,7 +144,7 @@ describe("", () => {
await wrapper.vm.$nextTick();
expect(wrapper.find("ul.events")).toMatchInlineSnapshot(`
- - today at 10:55 AM "This is a message."
+ - "This is a message."
`);
});
@@ -159,7 +159,7 @@ describe("", () => {
await wrapper.vm.$nextTick();
expect(wrapper.find("ul.events")).toMatchInlineSnapshot(`
- - today at 10:55 AM blackwhite
+ - blackwhite
`);
});
@@ -174,7 +174,7 @@ describe("", () => {
await wrapper.vm.$nextTick();
expect(wrapper.find("ul.events")).toMatchInlineSnapshot(`
- - today at 10:55 AM <test>foo bar</test>
+ - <test>foo bar</test>
`);
});
@@ -192,7 +192,7 @@ describe("", () => {
await wrapper.vm.$nextTick();
expect(wrapper.find("ul.events")).toMatchInlineSnapshot(`
- - today at 10:55 AM This is a test <hi></hi>
+ - This is a test <hi></hi>
`);
});
diff --git a/assets/components/LogViewer.vue b/assets/components/LogViewer.vue
index 3d5d3f32..471168cb 100644
--- a/assets/components/LogViewer.vue
+++ b/assets/components/LogViewer.vue
@@ -1,17 +1,16 @@
-
- {{ item.date | relativeTime }}
+
-