File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
MESS.Blazor/Components/Pages/ProductionLog
MESS.Tests/UI Testing/ProductionLog Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 33<div >
44 @if (WorkStations != null )
55 {
6- <label for =" product -select" >Select Station </label >
7- <select id =" product -select" class =" form-select" @onchange =" async e => await OnWorkStationSelected.InvokeAsync(int.Parse(e.Value?.ToString() ?? string.Empty))" >
6+ <label for =" workstation -select" >Select Station </label >
7+ <select id =" workstation -select" class =" form-select" @onchange =" async e => await OnWorkStationSelected.InvokeAsync(int.Parse(e.Value?.ToString() ?? string.Empty))" >
88 <option value =" -1" >Select Station </option >
99 @foreach ( var workStation in WorkStations )
1010 {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public void WorkStationSelectComponentRendersWith1Selection()
1515 . Add ( p => p . WorkStations , new List < WorkStation > ( ) ) ) ;
1616
1717 // Assert
18- var selectElement = cut . Find ( "select#product -select" ) ;
18+ var selectElement = cut . Find ( "select#workstation -select" ) ;
1919 Assert . Equal ( 1 , selectElement . Children . Length ) ;
2020 }
2121
@@ -54,7 +54,7 @@ public void WorkStationSelectComponentFiresOnWorkStationSelectedEvent()
5454 } ) ) ;
5555
5656 // Act
57- var selectElement = cut . Find ( "select#product -select" ) ;
57+ var selectElement = cut . Find ( "select#workstation -select" ) ;
5858 selectElement . Change ( "2" ) ;
5959
6060 // Assert
You can’t perform that action at this time.
0 commit comments