}
diff --git a/COMET.Web.Common/Components/Selectors/DomainOfExpertiseSelector.razor.cs b/COMET.Web.Common/Components/Selectors/DomainOfExpertiseSelector.razor.cs
index 0d953b94..cf83c2d2 100644
--- a/COMET.Web.Common/Components/Selectors/DomainOfExpertiseSelector.razor.cs
+++ b/COMET.Web.Common/Components/Selectors/DomainOfExpertiseSelector.razor.cs
@@ -52,15 +52,5 @@ public partial class DomainOfExpertiseSelector
///
[Parameter]
public string CssClass { get; set; }
-
- ///
- /// Gets the domain and shortname to display, in the following format: name [shortname]
- ///
- /// The domain of expertise to get the name and shortname
- /// A string that contains name and shortname
- private static string GetDomainNameAndShortnameToDisplay(DomainOfExpertise domainOfExpertise)
- {
- return $"{domainOfExpertise.Name} [{domainOfExpertise.ShortName}]";
- }
}
}
diff --git a/COMET.Web.Common/Components/Selectors/MeasurementScaleSelector.razor b/COMET.Web.Common/Components/Selectors/MeasurementScaleSelector.razor
new file mode 100644
index 00000000..21e54827
--- /dev/null
+++ b/COMET.Web.Common/Components/Selectors/MeasurementScaleSelector.razor
@@ -0,0 +1,35 @@
+
+@namespace COMET.Web.Common.Components.Selectors
+@using COMET.Web.Common.Model.Selectors
+@using CDP4Common.SiteDirectoryData
+@inherits DisposableComponent
+
+
diff --git a/COMET.Web.Common/Components/Selectors/MeasurementScaleSelector.razor.cs b/COMET.Web.Common/Components/Selectors/MeasurementScaleSelector.razor.cs
new file mode 100644
index 00000000..ca952602
--- /dev/null
+++ b/COMET.Web.Common/Components/Selectors/MeasurementScaleSelector.razor.cs
@@ -0,0 +1,44 @@
+// --------------------------------------------------------------------------------------------------------------------
+//
+// Copyright (c) 2024 Starion Group S.A.
+//
+// Authors: Sam Gerené, Alex Vorobiev, Alexander van Delft, Jaime Bernar, Théate Antoine, João Rua
+//
+// This file is part of COMET WEB Community Edition
+// The COMET WEB Community Edition is the Starion Group Web Application implementation of ECSS-E-TM-10-25 Annex A and Annex C.
+//
+// The COMET WEB Community Edition is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Affero General Public
+// License as published by the Free Software Foundation; either
+// version 3 of the License, or (at your option) any later version.
+//
+// The COMET WEB Community Edition is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see .
+//
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace COMET.Web.Common.Components.Selectors
+{
+ using CDP4Common.SiteDirectoryData;
+
+ using COMET.Web.Common.ViewModels.Components.Selectors;
+
+ using Microsoft.AspNetCore.Components;
+
+ ///
+ /// Component used to select a
+ ///
+ public partial class MeasurementScaleSelector : DisposableComponent
+ {
+ ///
+ /// Gets or sets the
+ ///
+ [Parameter]
+ public IMeasurementScaleSelectorViewModel ViewModel { get; set; }
+ }
+}
diff --git a/COMET.Web.Common/Components/Selectors/ParameterTypeSelector.razor b/COMET.Web.Common/Components/Selectors/ParameterTypeSelector.razor
index 6148b895..7edaef2b 100644
--- a/COMET.Web.Common/Components/Selectors/ParameterTypeSelector.razor
+++ b/COMET.Web.Common/Components/Selectors/ParameterTypeSelector.razor
@@ -1,7 +1,7 @@
@namespace COMET.Web.Common.Components.Selectors
-
+@using COMET.Web.Common.Extensions
@using CDP4Common.SiteDirectoryData
+@using COMET.Web.Common.Model.Selectors
@inherits BelongsToIterationSelector
@if (this.ViewModel.CurrentIteration != null)
@@ -30,11 +31,14 @@
{