diff --git a/frontend/src/views/api-test/components/paramTable.vue b/frontend/src/views/api-test/components/paramTable.vue index 72df372199..ec4dba0072 100644 --- a/frontend/src/views/api-test/components/paramTable.vue +++ b/frontend/src/views/api-test/components/paramTable.vue @@ -930,12 +930,11 @@ }); const { lastDataIsDefault } = filterKeyValParams(arr, defaultLineData.value, false); if ( - !lastDataIsDefault || - (hasNoIdItem && - !props.disabledExceptParam && - !props.disabledParamValue && - !lastDataIsDefault && - !props.isTreeTable) + hasNoIdItem && + !props.disabledExceptParam && + !props.disabledParamValue && + !lastDataIsDefault && + !props.isTreeTable ) { addTableLine(arr.length - 1, false, true); }