Skip to content

Commit

Permalink
fix: fix wrong parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Jongmin Kim <[email protected]>
  • Loading branch information
whdalsrnt committed Jun 18, 2024
1 parent 88a8f8a commit c9e2daa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def _generate_sort(table: dict) -> dict:

return Sort(**sort_option).dict()

def _generate_fields(self, fields: list, is_search: bool = True) -> list:
def _generate_fields(self, fields: list, is_search: bool = False) -> list:
gen_fields = []
for field in fields:
if "type" not in field:
Expand Down

0 comments on commit c9e2daa

Please sign in to comment.