diff --git a/README.md b/README.md index 331ddf6b..da592ce3 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,8 @@ The project requires a number of external tools to be installed before the build - [yarn](https://www.npmjs.com/package/yarn) - [json-server](https://www.npmjs.com/package/json-server) +To manage our node packages, we've chosen Yarn. Simply execute the command `yarn install` to set up all necessary dependencies. This single step ensures that your environment is fully prepared with all the required packages. + ### Development server Run `make start-dev` for a development server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files. diff --git a/src/app/components/nodes-view/nodes-view.component.ts b/src/app/components/nodes-view/nodes-view.component.ts index d18ce3a4..682fb7f9 100644 --- a/src/app/components/nodes-view/nodes-view.component.ts +++ b/src/app/components/nodes-view/nodes-view.component.ts @@ -67,7 +67,6 @@ export class NodesViewComponent implements OnInit { { colId: 'nodeId', colName: 'Node ID' }, { colId: 'rackName', colName: 'Rack Name' }, { colId: 'hostName', colName: 'Host Name' }, - { colId: 'partitionName', colName: 'Partition' }, { colId: 'attributes', colName: 'Attributes' }, { colId: 'capacity', colName: 'Capacity', colFormatter: CommonUtil.resourceColumnFormatter }, { colId: 'occupied', colName: 'Used', colFormatter: CommonUtil.resourceColumnFormatter },