fix(marketplace): autocomplete hub category
diff --git a/erpnext/public/js/hub/components/item_publish_dialog.js b/erpnext/public/js/hub/components/item_publish_dialog.js
index e49ba53..05eaffd 100644
--- a/erpnext/public/js/hub/components/item_publish_dialog.js
+++ b/erpnext/public/js/hub/components/item_publish_dialog.js
@@ -31,7 +31,8 @@
 	hub.call('get_categories')
 		.then(categories => {
 			categories = categories.map(d => d.name);
-			dialog.fields_dict.hub_category.set_data(categories);
+			dialog.fields_dict.hub_category.df.options = categories;
+			dialog.fields_dict.hub_category.set_options();
 		});
 
 	return dialog;