Skip to content

Commit

Permalink
exclude birthdays for search otherwise the search terms needs to be m…
Browse files Browse the repository at this point in the history
…odified with dashes '-'
  • Loading branch information
xjlin0 committed Dec 30, 2024
1 parent b60c134 commit 0bead99
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions attendees/static/js/persons/attendees_list_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,13 +482,15 @@ Attendees.dataAttendees = {
dataField: "actual_birthday",
caption: "birthday YMD",
dataHtmlTitle: "YYYY-MM-DD",
allowSearch: false,
visible: false,
},
{
dataField: "estimated_birthday",
caption: "birthday maybe",
dataHtmlTitle: "guessed birthday MM-DD",
calculateCellValue: (rowData) => rowData && rowData.estimated_birthday ? rowData.estimated_birthday.replace('1800-', '????-') : null,
allowSearch: false,
visible: false,
},
{
Expand Down

0 comments on commit 0bead99

Please sign in to comment.