open-vault/ui/app/components/shamir-progress.js
Matthew Irish d509588cd2
Ember update (#5386)
Ember update - update ember-cli, ember-data, and ember to 3.4 series
2018-09-25 11:28:26 -05:00

16 lines
436 B
JavaScript

import Component from '@ember/component';
import { computed } from '@ember/object';
export default Component.extend({
threshold: null,
progress: null,
classNames: ['shamir-progress'],
progressDecimal: computed('threshold', 'progress', function() {
const { threshold, progress } = this.getProperties('threshold', 'progress');
if (threshold && progress) {
return progress / threshold;
}
return 0;
}),
});