diff --git a/frontend/src/app/pages/particles/components/properties/properties.component.html b/frontend/src/app/pages/particles/components/properties/properties.component.html
index 31bb77a..a59ab76 100644
--- a/frontend/src/app/pages/particles/components/properties/properties.component.html
+++ b/frontend/src/app/pages/particles/components/properties/properties.component.html
@@ -15,6 +15,17 @@
+
+
+ Permission name
+
+
+
+ Package name
+
+
+
+
Particle Type
@@ -37,17 +48,6 @@
-
-
- Permission name
-
-
-
- Package name
-
-
-
-
Random Offset
diff --git a/frontend/src/app/pages/particles/components/properties/properties.component.ts b/frontend/src/app/pages/particles/components/properties/properties.component.ts
index 9586142..1747e39 100644
--- a/frontend/src/app/pages/particles/components/properties/properties.component.ts
+++ b/frontend/src/app/pages/particles/components/properties/properties.component.ts
@@ -1,4 +1,4 @@
-import {Component} from '@angular/core';
+import {Component, inject} from '@angular/core';
import {MatCard, MatCardContent, MatCardHeader, MatCardTitle} from "@angular/material/card";
import {MatCheckbox} from "@angular/material/checkbox";
import {MatFormField, MatInput, MatLabel} from "@angular/material/input";
@@ -24,17 +24,14 @@ import {ParticleManagerService} from '../../services/particle-manager.service';
MatSelect,
ReactiveFormsModule,
FormsModule
-],
+ ],
templateUrl: './properties.component.html',
styleUrl: './properties.component.scss'
})
export class PropertiesComponent {
public particleTypes = Object.values(ParticleType);
- constructor(
- private particleManagerService: ParticleManagerService,
- ) {
- }
+ private readonly particleManagerService = inject(ParticleManagerService);
public get particleData(): ParticleData {
return this.particleManagerService.getParticleData();