discourse-data-explorer/assets/javascripts/discourse/components/explorer-schema-enuminfo.js...

18 lines
374 B
JavaScript

import { default as computed } from "discourse-common/utils/decorators";
export default Ember.Component.extend({
tagName: "ol",
@computed("col.enum")
enuminfo(hash) {
let result = [];
for (let key in hash) {
if (!hash.hasOwnProperty(key)) {
continue;
}
result.push({ value: key, name: hash[key] });
}
return result;
}
});