Fix tags not appearing in the filter list when reopened

pull/3800/merge^2
Anatole Sot 4 months ago
parent 2b78dd9ace
commit ca2f346de5

@ -239,6 +239,13 @@ export const KeywordSelector = ({
value: keyword.id,
}))
);
} else {
setDefaultDataValue(
defaultValue.split(',').map((keyword, idx) => ({
label: keyword,
value: idx,
}))
);
}
};

Loading…
Cancel
Save