Code review comment for lp:~nik90/ubuntu-clock-app/edit-alarm-feature

Revision history for this message
Victor Thompson (vthompson) wrote :

In order to fix the comma issue, I think you just need to do this:

bzr diff
=== modified file 'app/alarm/AlarmUtils.qml'
--- app/alarm/AlarmUtils.qml 2014-06-24 20:15:38 +0000
+++ app/alarm/AlarmUtils.qml 2014-07-07 03:34:57 +0000
@@ -129,6 +129,8 @@
             occurs.push(Qt.locale().standaloneDayName(0, Locale.LongFormat))
         }

+ occurs = occurs.join(', ');
+
         return occurs;
     }
 }

« Back to merge proposal