diff --git a/client/components/ContentLists/Automatic/FilterPanel.jsx b/client/components/ContentLists/Automatic/FilterPanel.jsx index e741e79..7431792 100644 --- a/client/components/ContentLists/Automatic/FilterPanel.jsx +++ b/client/components/ContentLists/Automatic/FilterPanel.jsx @@ -333,6 +333,14 @@ class FilterPanel extends React.Component { vocabularies = vocabularies.filter((v) => v.id !== "priority"); } + // urgency + const urgency = vocabularies.find((v) => v.id === "urgency"); + + if (urgency) { + newMetadata.urgency = urgency.value[0].value; + vocabularies = vocabularies.filter((v) => v.id !== "urgency"); + } + // services const services = vocabularies.find((v) => v.id === "categories");