@@ -13,8 +11,10 @@
(click)="addVol()"
type="button"
[disabled]="readonly"
+ i18n="Add data volume button text"
>
-
diff --git a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-data-volumes/form-data-volumes.component.spec.ts b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-data-volumes/form-data-volumes.component.spec.ts
index ac5ef35b64e..96980a1ec8c 100755
--- a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-data-volumes/form-data-volumes.component.spec.ts
+++ b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-data-volumes/form-data-volumes.component.spec.ts
@@ -1,4 +1,4 @@
-import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { FormDataVolumesComponent } from './form-data-volumes.component';
@@ -6,11 +6,13 @@ describe('FormDataVolumesComponent', () => {
let component: FormDataVolumesComponent;
let fixture: ComponentFixture
;
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [FormDataVolumesComponent],
- }).compileComponents();
- }));
+ beforeEach(
+ waitForAsync(() => {
+ TestBed.configureTestingModule({
+ declarations: [FormDataVolumesComponent],
+ }).compileComponents();
+ }),
+ );
beforeEach(() => {
fixture = TestBed.createComponent(FormDataVolumesComponent);
diff --git a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-default.component.html b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-default.component.html
index 7a065df6d20..ba39a95b488 100644
--- a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-default.component.html
+++ b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-default.component.html
@@ -12,14 +12,22 @@
[imagesGroupOne]="config?.imageGroupOne?.options"
[imagesGroupTwo]="config?.imageGroupTwo?.options"
[allowCustomImage]="config?.allowCustomImage"
+ [hideRegistry]="config?.hideRegistry"
+ [hideTag]="config?.hideTag"
>
LAUNCH
-
+