Commit 35eeaf2f693b10fd21dd5269a969d246d2b3f726

Authored by fengtao
1 parent 5628e3ce

fix:DEFECT-552 修复通知时间显示秒前问题

... ... @@ -77,7 +77,7 @@
77 77 }
78 78
79 79 let resStr = '';
80   - let dirStr = isBefore ? t('component.time.before') : t('component.time.after');
  80 + let dirStr = isBefore ? t('component.time.after') : t('component.time.before');
81 81
82 82 if (diff < ONE_SECONDS) {
83 83 resStr = t('component.time.just');
... ...