Skip to content

Commit

Permalink
Merge pull request #3 from MSakamaki/master
Browse files Browse the repository at this point in the history
issues #2
  • Loading branch information
fourcube authored Nov 14, 2017
2 parents 860a197 + a30d502 commit fd7ca2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class OmnixlfFileWithData extends OmnixlfFile {
const note = transUnit.note || [];
let hint = note.length > 0 ? note[0] : '';
let context = note.length > 1 ? note[1] : '';
let target = transUnit.target[0];
let target = (transUnit.target || [])[0];
let source = transUnit.source[0];

if (target) {
Expand Down

0 comments on commit fd7ca2f

Please sign in to comment.