0
0
Fork 0

fix: refs #7413 No id tag

This commit is contained in:
Guillermo Bonet 2024-07-31 12:50:34 +02:00
parent d0149d8cbe
commit f09308d956
2 changed files with 2 additions and 0 deletions

View File

@ -112,6 +112,7 @@ const getCategoryClass = (category, params) => {
const getSelectedTagValues = async (tag) => { const getSelectedTagValues = async (tag) => {
try { try {
if (!tag?.selectedTag?.id) return;
tag.value = null; tag.value = null;
const filter = { const filter = {
fields: ['value'], fields: ['value'],

View File

@ -56,6 +56,7 @@ const onCategoryChange = async (categoryFk, search) => {
const getSelectedTagValues = async (tag) => { const getSelectedTagValues = async (tag) => {
try { try {
if (!tag?.selectedTag?.id) return;
tag.value = null; tag.value = null;
const filter = { const filter = {
fields: ['value'], fields: ['value'],