Merge pull request #102 from toeverything/feat/block-pendant

fix: fixed can not add new card in kanban
This commit is contained in:
Qi 2022-08-05 15:11:40 +08:00 committed by GitHub
commit c512d4f093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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');