浏览代码

fix: the batch annotaion btn should also be loading when progress status is waiting (#2974)

tags/0.5.11
Ricky 1年前
父节点
当前提交
afd77c4745
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      web/app/components/app/annotation/batch-add-annotation-modal/index.tsx

+ 1
- 1
web/app/components/app/annotation/batch-add-annotation-modal/index.tsx 查看文件

@@ -113,7 +113,7 @@ const BatchModal: FC<IBatchModalProps> = ({
type="primary"
onClick={handleSend}
disabled={isAnnotationFull || !currentCSV}
loading={importStatus === ProcessStatus.PROCESSING}
loading={importStatus === ProcessStatus.PROCESSING || importStatus === ProcessStatus.WAITING}
>
{t('appAnnotation.batchModal.run')}
</Button>

正在加载...
取消
保存