forked from verdnatura/salix-front
fix: refs #7413 No id tag
This commit is contained in:
parent
d0149d8cbe
commit
f09308d956
|
@ -112,6 +112,7 @@ const getCategoryClass = (category, params) => {
|
|||
|
||||
const getSelectedTagValues = async (tag) => {
|
||||
try {
|
||||
if (!tag?.selectedTag?.id) return;
|
||||
tag.value = null;
|
||||
const filter = {
|
||||
fields: ['value'],
|
||||
|
|
|
@ -56,6 +56,7 @@ const onCategoryChange = async (categoryFk, search) => {
|
|||
|
||||
const getSelectedTagValues = async (tag) => {
|
||||
try {
|
||||
if (!tag?.selectedTag?.id) return;
|
||||
tag.value = null;
|
||||
const filter = {
|
||||
fields: ['value'],
|
||||
|
|
Loading…
Reference in New Issue