diff --git a/frontend/src/business/components/project/template/CustomFieldList.vue b/frontend/src/business/components/project/template/CustomFieldList.vue index ffc0a04b47..41963dda6b 100644 --- a/frontend/src/business/components/project/template/CustomFieldList.vue +++ b/frontend/src/business/components/project/template/CustomFieldList.vue @@ -201,9 +201,6 @@ export default { let data = response.data; this.total = data.itemCount; this.tableData = data.listObject; - if (this.$refs.table) { - this.$refs.table.reloadTable(); - } }); }, handleEdit(data) { diff --git a/frontend/src/business/components/project/template/CustomFieldRelateList.vue b/frontend/src/business/components/project/template/CustomFieldRelateList.vue index 3ae24a95e6..c0ab757b17 100644 --- a/frontend/src/business/components/project/template/CustomFieldRelateList.vue +++ b/frontend/src/business/components/project/template/CustomFieldRelateList.vue @@ -157,7 +157,6 @@ export default { let data = response.data; this.total = data.itemCount; this.tableData = data.listObject; - this.$refs.table.reloadTable(); }); } },