Skip to content

Commit

Permalink
can go back to endpoint config from extensions and options
Browse files Browse the repository at this point in the history
  • Loading branch information
dhchandw committed Sep 5, 2024
1 parent e26dcfe commit 1325972
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/ZclEndpointCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
<div class="q-mx-md q-mb-sm">
<q-card
:class="{ 'active v-step-5': isSelectedEndpoint }"
@click="setSelectedEndpointType(endpointReference)"
@click="handleEndpointCardClick(endpointReference)"
flat
>
<div
Expand Down Expand Up @@ -408,6 +408,10 @@ export default {
this.selectedReporting.push(resolvedReference)
})
})
},
handleEndpointCardClick(endpointReference) {
this.setSelectedEndpointType(endpointReference)
this.$router.push({ path: '/' })
}
},
computed: {
Expand Down

0 comments on commit 1325972

Please sign in to comment.