Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const aggregatorSpec = f.store(() =>
),
separator: pipe(
syncers.xmlAttribute('separator', 'empty', false),
syncers.default(localized('; '))
syncers.fallback(localized('; '))
),
suffix: syncers.xmlAttribute('ending', 'empty', false),
limit: pipe(
Expand Down
2 changes: 1 addition & 1 deletion specifyweb/stored_queries/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def aggregate(self, query: QueryConstruct,
formatter_name = aggregator_formatter_name
if not self.hasFormatterDef(specify_model, aggregator_formatter_name):
formatter_name = aggregatorNode.attrib.get('format', None)
separator = aggregatorNode.attrib.get('separator', ',')
separator = aggregatorNode.attrib.get('separator', '; ')
order_by = aggregatorNode.attrib.get('orderfieldname', '')
limit = aggregatorNode.attrib.get('count', '')
limit = None if limit == '' or int(limit) == 0 else limit
Expand Down