diff --git a/frontend/src/views/GroupSessionInput.vue b/frontend/src/views/GroupSessionInput.vue index dee8e45..b3277f4 100644 --- a/frontend/src/views/GroupSessionInput.vue +++ b/frontend/src/views/GroupSessionInput.vue @@ -30,6 +30,10 @@ > + + Reconnect + + @@ -418,6 +422,16 @@ export default { } }); }); + }, + attemptReconnect: function() { + var self = this; + Vue.axios.get(`/grpob/participant/${self.participant}`) + .then(function(response){ + self.scenarios = response.data; + }) + .catch(function(error){ + console.log(error) + }) } } };