Skip to content

Commit

Permalink
fix: Missing the import qna file when generating the recognizer dialog (
Browse files Browse the repository at this point in the history
  • Loading branch information
lei9444 authored Oct 23, 2020
1 parent 06bb324 commit 819481b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const builderDispatcher = () => {
crossTrainConfig,
recognizerTypes,
luFiles: referredLuFiles.map((file) => ({ id: file.id, isEmpty: file.empty })),
qnaFiles: qnaFiles.map((file) => ({ id: file.id, isEmpty: !file.qnaSections.length })),
qnaFiles: qnaFiles.map((file) => ({ id: file.id, isEmpty: file.empty })),
});
luFileStatusStorage.publishAll(projectId);
qnaFileStatusStorage.publishAll(projectId);
Expand Down

0 comments on commit 819481b

Please sign in to comment.