We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64059e5 commit 137873eCopy full SHA for 137873e
1 file changed
src/create.js
@@ -31,7 +31,7 @@ module.exports = {
31
** (suppresses asking for a full URI or workspace)
32
**
33
*/
34
-function newThingUI (context, panes) {
+function newThingUI (context, thePanes) {
35
const dom = context.dom
36
const div = context.div
37
if (context.me && !context.me.uri) throw new Error('newThingUI: Invalid userid: ' + context.me)
@@ -132,8 +132,8 @@ function newThingUI (context, panes) {
132
} // makeNewAppInstance
133
134
var iconArray = []
135
- for (var pn in panes) {
136
- var pane = panes[pn]
+ for (var pn in thePanes) {
+ var pane = thePanes[pn]
137
if (pane.mintNew) {
138
var icon = context.div.appendChild(dom.createElement('img'))
139
icon.setAttribute('src', pane.icon)
0 commit comments