mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
* initial setup for issuers toolbar and some slight changes to roles model after discussion with design. * wip * wip ... :/ * finalizes serializer and linkedblock iteration of is_default * clean up * fix * forgot this bit * pr comments amendments: * small PR comment changes
11 lines
378 B
JavaScript
11 lines
378 B
JavaScript
import Controller from '@ember/controller';
|
|
import { action } from '@ember/object';
|
|
import { next } from '@ember/runloop';
|
|
|
|
export default class PkiRolesIssuerController extends Controller {
|
|
// To prevent production build bug of passing D.actions to on "click": https://github.com/hashicorp/vault/pull/16983
|
|
@action onLinkClick(D) {
|
|
next(() => D.actions.close());
|
|
}
|
|
}
|