Skip to content

Commit f7c1cdc

Browse files
authored
Fix missing commas in createSettingsPage() (#30)
1 parent 18095fd commit f7c1cdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/editor-components/page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ function createSettingsPage() {
6969
className: 'icon back',
7070
dataset: {
7171
action: "back-btn"
72-
}
72+
},
7373
onclick: () => settingsPage.hide()
7474
});
7575

7676
const saveButton = tag('span', {
7777
className: 'icon save',
7878
dataset: {
7979
action: "save-btn"
80-
}
80+
},
8181
onclick: () => {console.log("save settings")}
8282
});
8383

0 commit comments

Comments
 (0)