diff --git a/frontend/src/components/InfoView/SpiderInfoView.vue b/frontend/src/components/InfoView/SpiderInfoView.vue index 48b70a12..801c0fce 100644 --- a/frontend/src/components/InfoView/SpiderInfoView.vue +++ b/frontend/src/components/InfoView/SpiderInfoView.vue @@ -23,6 +23,7 @@ v-model="spiderForm.project_id" :placeholder="$t('Project')" filterable + :disabled="isView" > - + diff --git a/frontend/src/store/modules/task.js b/frontend/src/store/modules/task.js index 563fc907..595ec7b0 100644 --- a/frontend/src/store/modules/task.js +++ b/frontend/src/store/modules/task.js @@ -141,7 +141,6 @@ const actions = { }) }, getTaskLog ({ state, commit }, id) { - commit('SET_TASK_LOG', '') return request.get(`/tasks/${id}/log`) .then(response => { commit('SET_TASK_LOG', response.data.data)