Skip to content

Commit

Permalink
fix(export): replace filterInfo with filterValues
Browse files Browse the repository at this point in the history
  • Loading branch information
siriuswh0327 committed Nov 17, 2023
1 parent f8a0edf commit 4b8bb34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/page/SQLManagement/SQLPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,13 +346,13 @@ const SQLPanel: React.FC = () => {
filter_status: filterValues.filter_status as
| exportSqlManageV1FilterStatusEnum
| undefined,
filter_db_type: filterInfo.filter_rule?.split(
filter_db_type: filterValues.filter_rule?.split(
DB_TYPE_RULE_NAME_SEPARATOR
)?.[0],
filter_rule_name: filterInfo.filter_rule?.split(
filter_rule_name: filterValues.filter_rule?.split(
DB_TYPE_RULE_NAME_SEPARATOR
)?.[1],
fuzzy_search_endpoint: filterInfo.fuzzy_search_endpoint,
fuzzy_search_endpoint: filterValues.fuzzy_search_endpoint,
};

Check warning on line 356 in src/page/SQLManagement/SQLPanel/index.tsx

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement

SqlManage.exportSqlManageV1(params, { responseType: 'blob' })
Expand Down

0 comments on commit 4b8bb34

Please sign in to comment.