Skip to content

Commit

Permalink
make mute option sticky
Browse files Browse the repository at this point in the history
  • Loading branch information
ethayer committed Sep 28, 2015
1 parent 2a82f97 commit 2f22148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user-lock-manager.smartapp.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* User Lock Manager v4.0.4
* User Lock Manager v4.0.5
*
* Copyright 2015 Erik Thayer
*
Expand Down Expand Up @@ -119,7 +119,7 @@ def userPage(params) {
input(name: "userSlot${i}", type: "number", title: "Slot (1 through 30)", defaultValue: preSlectedCode(i))
}
section {
input(name: "dontNotify${i}", title: "Mute entry notification?", type: "bool", required: false, defaultValue: settings."notify${i}")
input(name: "dontNotify${i}", title: "Mute entry notification?", type: "bool", required: false, defaultValue: settings."dontNotify${i}")
input(name: "burnCode${i}", title: "Burn after use?", type: "bool", required: false, defaultValue: settings."burnCode${i}")
input(name: "userEnabled${i}", title: "Enabled?", type: "bool", required: false, defaultValue: settings."userEnabled${i}")
def phrases = location.helloHome?.getPhrases()*.label
Expand Down

0 comments on commit 2f22148

Please sign in to comment.