We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507f503 commit b3baefdCopy full SHA for b3baefd
MediaGalleryUi/view/adminhtml/web/js/image/edit/keyword-ui-select.js
@@ -26,10 +26,12 @@ define([
26
getKeywordsOp: function () {
27
var imageTags = this.image.tags,
28
option = [];
29
+
30
imageTags.forEach(function (tag) {
- option['label'] = tag.value;
31
- option['value'] = tag.value;
32
- option.push(option);
+ option.push({
+ label: tag,
33
+ value: tag
34
+ });
35
});
36
37
this.options(option);
0 commit comments