diff --git a/ui/packages/consul-ui/app/components/consul/health-check/list/pageobject.js b/ui/packages/consul-ui/app/components/consul/health-check/list/pageobject.js index d69dee72e..63d9438a5 100644 --- a/ui/packages/consul-ui/app/components/consul/health-check/list/pageobject.js +++ b/ui/packages/consul-ui/app/components/consul/health-check/list/pageobject.js @@ -1,12 +1,12 @@ export default (collection, text) => (scope = '.consul-health-check-list') => { return collection({ - scope, - itemScope: 'li', - item: { - name: text('header h2'), - type: text('[data-health-check-type]'), - exposed: text('[data-test-exposed]'), - } - }); + scope, + itemScope: 'li', + item: { + name: text('header h2'), + type: text('[data-health-check-type]'), + exposed: text('[data-test-exposed]'), + }, + }); };