Skip to content

Commit

Permalink
Merge pull request #17 from tbutter/fixsettings
Browse files Browse the repository at this point in the history
fix durationMinutes in saveSettings
  • Loading branch information
sqrrrl committed Jun 18, 2018
2 parents eccc367 + 27a6091 commit 6cfa4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meeting-assistant/src/ActionHandlers.js
Expand Up @@ -194,7 +194,7 @@ var ActionHandlers = {
*/
saveSettings: function(e) {
var settings = {
durationMintutes: parseInt(e.formInput.duration),
durationMinutes: parseInt(e.formInput.duration),
startHour: parseInt(e.formInput.start),
endHour: parseInt(e.formInput.end),
meetingIntervalMinutes: parseInt(e.formInput.meetingInterval),
Expand Down

0 comments on commit 6cfa4f5

Please sign in to comment.