Skip to content

Commit

Permalink
Adapted provenance search to handle compound sites (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vas9ka authored Jul 8, 2024
1 parent 2627b8c commit c0af223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fragmentarium/ui/SearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class SearchForm extends Component<SearchFormProps, State> {
: '',
scriptPeriod: state.scriptPeriod,
genre: state.genre,
site: state.site ? state.site.split(' ')[0] : '',
site: state.site ? state.site.split(/\[|\]/)[0] : '',
project: state.project,
},
(value) => !value
Expand Down

0 comments on commit c0af223

Please sign in to comment.