0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 15:21:11 +02:00
Dieser Commit ist enthalten in:
Angus McLeod 2018-06-29 16:07:34 +10:00
Ursprung af613c11d6
Commit 1b1df47e62

Datei anzeigen

@ -1,8 +1,6 @@
import { default as computed, on, observes } from 'ember-addons/ember-computed-decorators';
import { default as computed, on } from 'ember-addons/ember-computed-decorators';
import { getOwner } from 'discourse-common/lib/get-owner';
const fieldNotPresent = (f) => { return f == null || f === undefined };
export default Ember.Component.extend({
classNames: 'custom-input',
noneKey: 'admin.wizard.select_field',
@ -27,7 +25,7 @@ export default Ember.Component.extend({
return {
id: `user_field_${f.id}`,
name: f.name
}
};
}));
}
});