diff --git a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.html b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.html index 5fa23645..3b96aae5 100644 --- a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.html +++ b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.html @@ -25,7 +25,6 @@ {{ v.uiName }} diff --git a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.ts b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.ts index 044aaacd..8e7657d6 100644 --- a/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.ts +++ b/components/crud-web-apps/jupyter/frontend/src/app/pages/form/form-default/form-gpus/form-gpus.component.ts @@ -47,13 +47,9 @@ export class FormGpusComponent implements OnInit { } // Vendor handling - public vendorIsDisabled(vendor: GPUVendor) { - return !this.installedVendors.has(vendor.limitsKey); - } - public vendorTooltip(vendor: GPUVendor) { return !this.installedVendors.has(vendor.limitsKey) - ? $localize`No ${vendor.uiName} GPU found installed in the cluster.` + ? $localize`There are currently no ${vendor.uiName} GPUs in you cluster.` : ''; }