mirror of https://github.com/hashicorp/consul
Call super with arguments to safeguard against future changes
parent
815439b593
commit
9da2a73785
|
@ -6,8 +6,8 @@ export default class AgentlessNotice extends Component {
|
|||
storageKey = 'nodes-agentless-dismissed';
|
||||
@storageFor('notices') notices;
|
||||
|
||||
constructor(owner, args) {
|
||||
super(owner, args);
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
|
||||
if (this.args.postfix) {
|
||||
this.storageKey = `nodes-agentless-dismissed-${this.args.postfix}`;
|
||||
|
|
Loading…
Reference in New Issue