fix: fixed can not add new card in kanban

This commit is contained in:
QiShaoXuan 2022-08-05 15:06:12 +08:00
parent 96dd670621
commit 4f73eeb9de

View File

@ -57,18 +57,13 @@ const isValueBelongOption = (
option: KanbanGroup option: KanbanGroup
) => { ) => {
switch (propertyValue.type) { switch (propertyValue.type) {
case PropertyType.Select || PropertyType.Status: { case PropertyType.Select:
case PropertyType.Status: {
return propertyValue.value === option.id; return propertyValue.value === option.id;
} }
case PropertyType.MultiSelect: { case PropertyType.MultiSelect: {
return propertyValue.value.some(i => i === option.id); return propertyValue.value.some(i => i === option.id);
} }
// case PropertyType.Status: {
// return propertyValue.value === option.id;
// }
// case PropertyType.Text: {
// TOTODO:DO support this type
// }
default: { default: {
console.error(propertyValue, option); console.error(propertyValue, option);
throw new Error('Not support group by type'); throw new Error('Not support group by type');