mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-19 16:37:36 +00:00
fix id
This commit is contained in:
parent
d6af4ceb85
commit
52d4b28635
@ -74,7 +74,7 @@ async function searchEndpoints(keyword: string) {
|
|||||||
if (!selectorStore.currentService) {
|
if (!selectorStore.currentService) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const service = selectorStore.currentService.value;
|
const service = selectorStore.currentService.id;
|
||||||
const res = await profileStore.getEndpoints(service, keyword);
|
const res = await profileStore.getEndpoints(service, keyword);
|
||||||
|
|
||||||
if (res.errors) {
|
if (res.errors) {
|
||||||
|
@ -21,7 +21,7 @@ limitations under the License. -->
|
|||||||
class="profile-input"
|
class="profile-input"
|
||||||
size="small"
|
size="small"
|
||||||
:value="endpointName"
|
:value="endpointName"
|
||||||
:options="profileStore.taskEndpoints"
|
:options="profileStore.endpoints"
|
||||||
placeholder="Select a endpoint"
|
placeholder="Select a endpoint"
|
||||||
:isRemote="true"
|
:isRemote="true"
|
||||||
@change="changeEndpoint"
|
@change="changeEndpoint"
|
||||||
@ -118,7 +118,7 @@ async function searchEndpoints(keyword: string) {
|
|||||||
if (!selectorStore.currentService) {
|
if (!selectorStore.currentService) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const service = selectorStore.currentService.value;
|
const service = selectorStore.currentService.id;
|
||||||
const res = await profileStore.getEndpoints(service, keyword);
|
const res = await profileStore.getEndpoints(service, keyword);
|
||||||
|
|
||||||
if (res.errors) {
|
if (res.errors) {
|
||||||
|
Loading…
Reference in New Issue
Block a user