mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-08 21:21:32 +00:00
21 lines
477 B
JavaScript
21 lines
477 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
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;
|
|
if (threshold && progress) {
|
|
return progress / threshold;
|
|
}
|
|
return 0;
|
|
}),
|
|
});
|