Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructure getEndpointIds function to pass ui.test.js #1483

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/components/ZclCreateModifyEndpoint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -544,9 +544,11 @@ export default {
}
},
getEndpointIds() {
this.$store.dispatch('zap/getEndpointIds').then((res) => {
this.endpointIds = res.data
})
if (this.$serverGet != null) {
ethanzhouyc marked this conversation as resolved.
Show resolved Hide resolved
this.$serverGet(RestApi.uri.endpointIds).then((resp) => {
this.endpointIds = resp.data
})
}
},
// This function will close the endpoint modal
toggleCreateEndpointModal() {
Expand Down
8 changes: 0 additions & 8 deletions src/store/zap/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,14 +513,6 @@ export function addEndpoint(context, newEndpointContext) {
})
}

/**
* Get endpoint ids.
* @returns endpoints ids
*/
export async function getEndpointIds() {
return await axiosRequests.$serverGet(restApi.uri.endpointIds)
}

/**
* Add endpoint type for ZAP UI.
* @param {*} context
Expand Down
Loading