Skip to content

Commit eafbfd1

Browse files
committed
Fix component creation bug
Signed-off-by: Steven Esser <[email protected]>
1 parent e732ef4 commit eafbfd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/app/js/controllers/componentDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class ComponentDialog extends Controller {
288288
const saved = component.download_url || [];
289289
return Promise.all([
290290
this._urlQuery(component.path, 'url'),
291-
this._packageQuery(component.path, 'download_urls'),
291+
this._packageQuery(component.path, 'download_url'),
292292
])
293293
.then((rows) => $.map(rows, (row) => row))
294294
.then((download_urls) => download_urls.concat(saved))

0 commit comments

Comments
 (0)