Sort sub labels to ensure consistent list

This commit is contained in:
Nick Mowen 2023-02-27 07:57:39 -07:00
parent 7323ccaf57
commit ec55714ed9

View File

@ -333,6 +333,7 @@ def get_sub_labels():
if not (part.strip()) in sub_labels:
sub_labels.append(part.strip())
sub_labels.sort()
return jsonify(sub_labels)