Skip to content

Commit

Permalink
issues #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizuho Sakamaki (gxp)_AGDC committed Nov 14, 2017
1 parent 860a197 commit a30d502
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 a30d502

Please sign in to comment.