Skip to content

Commit

Permalink
fixing template drop-down eval
Browse files Browse the repository at this point in the history
  • Loading branch information
knakashima committed Apr 10, 2017
1 parent 1facc6e commit 8f0ae57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example-provisioning-form.gs
Expand Up @@ -267,13 +267,13 @@ function onFormSubmit(e) {
store.templateOpt = itemResponses[2].getResponse();

// Input the proper template ID's below
if (store.templateOpt = "GUEST 10MB") {
if (store.templateOpt == "GUEST 10MB") {
store.templateId = '<template ID>';
}
if (store.templateOpt = "GUEST 50MB") {
if (store.templateOpt == "GUEST 50MB") {
store.templateId = '<template ID>';
}
if (store.templateOpt = "GUEST 100MB") {
if (store.templateOpt == "GUEST 100MB") {
store.templateId = '<template ID>';
}

Expand Down

0 comments on commit 8f0ae57

Please sign in to comment.