Skip to content

Commit ac466d7

Browse files
authored
and make HTML file casing consistent
1 parent 1ad82ae commit ac466d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

forms/notifications/notification.gs

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function onInstall(e) {
7575
* configuring the notifications this add-on will produce.
7676
*/
7777
function showSidebar() {
78-
var ui = HtmlService.createHtmlOutputFromFile('Sidebar')
78+
var ui = HtmlService.createHtmlOutputFromFile('sidebar')
7979
.setTitle('Form Notifications');
8080
FormApp.getUi().showSidebar(ui);
8181
}
@@ -85,7 +85,7 @@ function showSidebar() {
8585
* this add-on.
8686
*/
8787
function showAbout() {
88-
var ui = HtmlService.createHtmlOutputFromFile('About')
88+
var ui = HtmlService.createHtmlOutputFromFile('about')
8989
.setWidth(420)
9090
.setHeight(270);
9191
FormApp.getUi().showModalDialog(ui, 'About Form Notifications');

0 commit comments

Comments
 (0)