Skip to content

Commit 795a241

Browse files
committed
Minor
1 parent e48b48e commit 795a241

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ducks/dictImport.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export const selectors = {
198198

199199
switch (state.dictImport.get("step")) {
200200
case "LANGUAGES":
201-
result &&= parallel
201+
result &&= parallel === 'txt'
202202
? linking
203203
.some((item, blob_id) => languages.has(blob_id) && item.get("translation").size > 0)
204204
: linking
@@ -223,7 +223,7 @@ export const selectors = {
223223
});
224224

225225
case "LINKING":
226-
result &&= parallel === "txt"
226+
result &&= parallel === 'txt'
227227
? linking.size > 1
228228
: linking
229229
.toArray()

0 commit comments

Comments
 (0)