diff --git a/core/frontend/src/views/SystemInformationView.vue b/core/frontend/src/views/SystemInformationView.vue index 71a95459d8..67cce3eaaa 100644 --- a/core/frontend/src/views/SystemInformationView.vue +++ b/core/frontend/src/views/SystemInformationView.vue @@ -61,7 +61,6 @@ import Network from '@/components/system-information/Network.vue' import Processes from '@/components/system-information/Processes.vue' import SystemCondition from '@/components/system-information/SystemCondition.vue' import system_information from '@/store/system-information' -import { callPeriodically } from '@/utils/helper_functions' export default Vue.extend({ name: 'SystemInformationView', @@ -82,8 +81,5 @@ export default Vue.extend({ page_selected: 'process', } }, - mounted() { - callPeriodically(system_information.fetchSystem, 5000) - }, })