diff --git a/src/views/dashboard/related/log/Header.vue b/src/views/dashboard/related/log/Header.vue
index 81cf8a5d..6d42ea2c 100644
--- a/src/views/dashboard/related/log/Header.vue
+++ b/src/views/dashboard/related/log/Header.vue
@@ -121,10 +121,7 @@ limitations under the License. -->
{{ t("keywordsOfContent") }}:
@@ -492,19 +489,19 @@ function cancelSearchTerm() {
excludingKeywordsOfContent.value = [];
break;
case "instance":
- state.instance.value = "0";
+ state.instance = { value: "0", label: "All" };
break;
case "endpoints":
- state.endpoint.value = "0";
+ state.endpoint = { value: "0", label: "All" };
getEndpoints();
break;
case "service":
- state.service.value = "";
+ state.service = { value: "", label: "" };
break;
}
removeFromActiveTerms();
currentSearchTerm.value = "";
- init();
+ searchLogs()
}
watch(
() => selectorStore.currentService,