diff --git a/src/app/pages/storage/modules/devices/components/devices/devices.component.ts b/src/app/pages/storage/modules/devices/components/devices/devices.component.ts index e772ed85038..af4ef4668ce 100644 --- a/src/app/pages/storage/modules/devices/components/devices/devices.component.ts +++ b/src/app/pages/storage/modules/devices/components/devices/devices.component.ts @@ -19,7 +19,6 @@ import { Observable } from 'rxjs'; import { filter, map } from 'rxjs/operators'; import { Role } from 'app/enums/role.enum'; import { TopologyItemType } from 'app/enums/v-dev-type.enum'; -import { stringToTitleCase } from 'app/helpers/string-to-title-case'; import { WINDOW } from 'app/helpers/window.helper'; import { DeviceNestedDataNode, isVdevGroup } from 'app/interfaces/device-nested-data-node.interface'; import { Disk } from 'app/interfaces/disk.interface'; @@ -74,7 +73,7 @@ export class DevicesComponent implements OnInit, AfterViewInit { get pageTitle(): string { return this.poolName - ? this.translate.instant('{name} Devices', { name: stringToTitleCase(this.poolName) }) + ? this.translate.instant('{name} Devices', { name: this.poolName }) : this.translate.instant('Devices'); }