diff --git a/ui/public/locales/en.json b/ui/public/locales/en.json index 64144c55bb6..0691c2da4ad 100644 --- a/ui/public/locales/en.json +++ b/ui/public/locales/en.json @@ -767,7 +767,6 @@ "label.egressdefaultpolicy": "Default egress policy", "label.elastic": "Elastic", "label.email": "Email", -"label.enabled": "Enabled", "label.enable.autoscale.vmgroup": "Enable AutoScale VM Group", "label.enable.host": "Enable Host", "label.enable.network.offering": "Enable network offering", @@ -2016,6 +2015,7 @@ "label.uk.keyboard": "UK keyboard", "label.unauthorized": "Unauthorized", "label.unavailable": "Unavailable", +"label.undefined": "Undefined", "label.unit": "Usage unit", "label.unknown": "Unknown", "label.unlimited": "Unlimited", diff --git a/ui/tests/unit/views/AutogenView.spec.js b/ui/tests/unit/views/AutogenView.spec.js index ec3130c6fb3..fe890ea61bf 100644 --- a/ui/tests/unit/views/AutogenView.spec.js +++ b/ui/tests/unit/views/AutogenView.spec.js @@ -1140,10 +1140,9 @@ describe('Views > AutogenView.vue', () => { ]) expect(wrapper.vm.showAction).toBeTruthy() expect(listUuidOpts).toHaveBeenCalledTimes(4) - expect(listUuidOpts).toHaveBeenCalledWith({ name: 'id', type: 'uuid' }) - expect(listUuidOpts).toHaveBeenCalledWith({ name: 'column1', type: 'list' }) - expect(listUuidOpts).toHaveBeenCalledWith({ name: 'column2', type: 'string' }) - expect(listUuidOpts).toHaveBeenCalledWith({ name: 'account', type: 'string' }) + expect(listUuidOpts).toHaveBeenCalledWith({ name: 'id', type: 'uuid' }, undefined) + expect(listUuidOpts).toHaveBeenCalledWith({ name: 'column1', type: 'list' }, undefined) + expect(listUuidOpts).toHaveBeenCalledWith({ name: 'column2', type: 'string' }, undefined) done() })