Browse Source

fix: update abbreviations for time units

Gerald 8 years ago
parent
commit
aa0cd106aa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/options/views/script-item.vue

+ 2 - 2
src/options/views/script-item.vue

@@ -143,8 +143,8 @@ export default {
           [60, 'min'],
           [60, 'min'],
           [24, 'h'],
           [24, 'h'],
           [30, 'd'],
           [30, 'd'],
-          [12, 'mon'],
-          [-1, 'yr'],
+          [12, 'm'],
+          [-1, 'y'],
         ];
         ];
         const unitInfo = units.find(([max]) => {
         const unitInfo = units.find(([max]) => {
           if (max < 0 || delta < max) return true;
           if (max < 0 || delta < max) return true;