diff --git a/components/history.vue b/components/history.vue
index 28f3261e7..b9218da0e 100644
--- a/components/history.vue
+++ b/components/history.vue
@@ -225,9 +225,9 @@
@@ -272,6 +272,7 @@
.fade-leave-active {
transition: all 0.2s;
}
+
.fade-enter,
.fade-leave-to {
opacity: 0;
diff --git a/pages/realtime.vue b/pages/realtime.vue
index 95d471bdf..55b78ac67 100644
--- a/pages/realtime.vue
+++ b/pages/realtime.vue
@@ -25,10 +25,10 @@
name="connect"
@click="toggleConnection"
>
- {{ toggleConnectionVerb }}
+ {{ !connectionState ? "Connect" : "Disconnect" }}
- {{ connectionState ? "sync" : "sync_disabled" }}
+ {{ !connectionState ? "sync" : "sync_disabled" }}
@@ -114,7 +114,7 @@
name="start"
@click="toggleSSEConnection"
>
- {{ toggleSSEConnectionVerb }}
+ {{ !connectionSSEState ? "Start" : "Stop" }}
{{ !connectionSSEState ? "sync" : "sync_disabled" }}
@@ -205,9 +205,6 @@ export default {
};
},
computed: {
- toggleConnectionVerb() {
- return !this.connectionState ? "Connect" : "Disconnect";
- },
urlValid() {
const pattern = new RegExp(
"^(wss?:\\/\\/)?" +
@@ -220,9 +217,6 @@ export default {
);
return pattern.test(this.url);
},
- toggleSSEConnectionVerb() {
- return !this.connectionSSEState ? "Start" : "Stop";
- },
serverValid() {
const pattern = new RegExp(
"^(http(s)?:\\/\\/)?" +