12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
import ObjectController from 'discourse/controllers/object';
|
|
|
|
export default ObjectController.extend({
|
|
saving: false,
|
|
newBio: null,
|
|
|
|
saveButtonText: function() {
|
|
return this.get('saving') ? I18n.t("saving") : I18n.t('user.change');
|
|
}.property('saving')
|
|
|
|
});
|