diff --git a/ui/src/app/metadata/provider/container/provider-edit.component.spec.ts b/ui/src/app/metadata/provider/container/provider-edit.component.spec.ts
index 05cb75832..29ce63571 100644
--- a/ui/src/app/metadata/provider/container/provider-edit.component.spec.ts
+++ b/ui/src/app/metadata/provider/container/provider-edit.component.spec.ts
@@ -15,6 +15,7 @@ import { ProviderEditorNavComponent } from '../component/provider-editor-nav.com
import { NgbModalStub } from '../../../../testing/modal.stub';
import { MetadataProvider } from '../../domain/model';
import { of } from 'rxjs';
+import { DifferentialService } from '../../../core/service/differential.service';
@Component({
template: `
@@ -44,7 +45,11 @@ describe('Provider Edit Component', () => {
TestBed.configureTestingModule({
imports: [
NgbDropdownModule.forRoot(),
- RouterTestingModule,
+ RouterTestingModule.withRoutes([
+ {path: 'edit', children: []},
+ {path: 'foo', children: []},
+ {path: '', children: []}
+ ]),
SharedModule,
StoreModule.forRoot({
provider: combineReducers(fromRoot.reducers),
@@ -64,6 +69,7 @@ describe('Provider Edit Component', () => {
ProviderEditorNavComponent
],
providers: [
+ DifferentialService,
{ provide: NgbModal, useClass: NgbModalStub },
{ provide: ActivatedRoute, useValue: activatedRoute },
{ provide: APP_BASE_HREF, useValue: '/' }
diff --git a/ui/src/app/metadata/resolver/component/wizard-nav.component.html b/ui/src/app/metadata/resolver/component/wizard-nav.component.html
index ca6c3cccc..cada4d76f 100644
--- a/ui/src/app/metadata/resolver/component/wizard-nav.component.html
+++ b/ui/src/app/metadata/resolver/component/wizard-nav.component.html
@@ -42,7 +42,7 @@
role="button">
Save
-
diff --git a/ui/src/app/schema-form/widget/datalist/datalist.component.html b/ui/src/app/schema-form/widget/datalist/datalist.component.html
index 6b3c9286d..ea1af0ec9 100644
--- a/ui/src/app/schema-form/widget/datalist/datalist.component.html
+++ b/ui/src/app/schema-form/widget/datalist/datalist.component.html
@@ -1,5 +1,5 @@
-
\ No newline at end of file
+
diff --git a/ui/src/app/schema-form/widget/number/number.component.html b/ui/src/app/schema-form/widget/number/number.component.html
index 6fe04cf82..d44edff92 100644
--- a/ui/src/app/schema-form/widget/number/number.component.html
+++ b/ui/src/app/schema-form/widget/number/number.component.html
@@ -20,5 +20,6 @@
[attr.placeholder]="schema.placeholder"
[attr.maxLength]="schema.maxLength || null"
[attr.minLength]="schema.minLength || null"
- [attr.step]="schema.multipleOf || schema.widget.step">
-