We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca00ff commit a02dbf0Copy full SHA for a02dbf0
ui/src/views/WebEndpoints.vue
@@ -85,7 +85,7 @@ const hasAuthorizationCreateWebEndpoint = () => {
85
return role !== "" && hasPermission(authorizer.role[role], actions.tunnel.create);
86
};
87
88
-const searchWebEndpoints = () => {
+const searchWebEndpoints = async () => {
89
let encodedFilter = "";
90
91
if (filter.value) {
@@ -99,7 +99,7 @@ const searchWebEndpoints = () => {
99
}
100
101
try {
102
- store.dispatch("webEndpoints/search", {
+ await store.dispatch("webEndpoints/search", {
103
page: store.getters["webEndpoints/getPage"],
104
perPage: store.getters["webEndpoints/getPerPage"],
105
filter: encodedFilter,
0 commit comments