mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
export default Component.extend({
|
|
wizard: service(),
|
|
classNames: ['ui-wizard'],
|
|
glyph: null,
|
|
headerText: null,
|
|
actions: {
|
|
dismissWizard() {
|
|
this.get('wizard').transitionTutorialMachine(this.get('wizard.currentState'), 'DISMISS');
|
|
},
|
|
},
|
|
});
|