2021-11-24 14:53:12 +00:00
|
|
|
import Component from '@glimmer/component';
|
|
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
|
2020-05-11 15:37:11 +00:00
|
|
|
import chart from './chart.xstate';
|
|
|
|
|
2021-11-24 14:53:12 +00:00
|
|
|
export default class OidcSelect extends Component {
|
2022-10-19 23:26:25 +00:00
|
|
|
@tracked partition = 'default';
|
|
|
|
|
2021-11-24 14:53:12 +00:00
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
2020-05-11 15:37:11 +00:00
|
|
|
this.chart = chart;
|
2022-10-19 23:26:25 +00:00
|
|
|
|
|
|
|
if (this.args.partition) {
|
|
|
|
this.partition = this.args.partition;
|
|
|
|
}
|
2021-11-24 14:53:12 +00:00
|
|
|
}
|
|
|
|
}
|