Skip to content

Commit 96b3e06

Browse files
authored
Merge pull request #6 from SilentDepth/v2
Fix: Wrong name history time
2 parents 605e0b4 + 25860be commit 96b3e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/Name.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default {
2020
'info',
2121
]),
2222
changedToAt() {
23-
return moment(name.changedToAt).format(this.info.timeFormat ? this.info.timeFormat.compact : '');
23+
return moment(this.name.changedToAt).format(this.info.timeFormat ? this.info.timeFormat.compact : '');
2424
},
2525
},
2626
};

0 commit comments

Comments
 (0)