Skip to content

Commit 54ea162

Browse files
minor fixes
1 parent d32d729 commit 54ea162

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

ui/packages/consul-peerings/app/components/consul/peer/form/token/actions/index.hbs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
SPDX-License-Identifier: BUSL-1.1
44
}}
55

6-
<div>
6+
<div ...attributes>
77
<Hds::ButtonSet>
88
<Hds::Button
99
@text='Copy token'
1010
@color='primary'
11-
...attributes
1211
{{with-copyable @token}}
1312
/>
1413
<Hds::Button

ui/packages/consul-ui/.eslintrc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ module.exports = {
2929
'no-console': ['error', { allow: ['error', 'info'] }],
3030
'no-unused-vars': ['error', { args: 'none' }],
3131
'ember/no-new-mixins': ['warn'],
32-
'ember/no-jquery': 'error',
33-
'ember/no-global-jquery': 'error',
3432

3533
// for 3.24 update
3634
'ember/classic-decorator-no-classic-methods': ['warn'],

ui/packages/consul-ui/app/controllers/dc/services/show/instance.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { action } from '@ember/object';
55
export default class InstancesController extends Controller {
66
@tracked proxies = [];
77

8-
@action setProxies(data) {
8+
@action
9+
setProxies(data) {
910
this.proxies = Array.isArray(data) ? data : data ? [data] : [];
1011
}
1112
}

ui/packages/consul-ui/config/deprecation-workflow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ self.deprecationWorkflow.config = {
1717
{ handler: 'log', matchId: 'ember-component.send-action' },
1818
{ handler: 'log', matchId: 'ember-cli-page-object.multiple' },
1919
{ handler: 'log', matchId: 'computed-property.override' },
20-
{ handler: 'silence', matchId: 'autotracking.mutation-after-consumption' },
20+
{ handler: 'log', matchId: 'autotracking.mutation-after-consumption' },
2121
{ handler: 'log', matchId: 'ember-data:legacy-test-helper-support' },
2222
{ handler: 'log', matchId: 'ember-data:Model.data' },
2323
],

0 commit comments

Comments
 (0)