Skip to content

Commit 2db8224

Browse files
ElderJamesSteveSandersonMS
authored andcommitted
add nomal style value
1 parent e21df9d commit 2db8224

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Components/test/E2ETest/Tests/QuickGridTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public void AdditionalAttributesApplied()
124124
var classList = grid.GetAttribute("class")?.Split(" ");
125125

126126
Assert.Equal("quick-grid", idValue);
127-
Assert.Equal("custom-style", styleValue);
127+
Assert.Equal("color:red;", styleValue);
128128
Assert.Contains("custom-class", classList);
129129
}
130130
}

src/Components/test/testassets/BasicTestApp/QuickGridTest/SampleQuickGridComponent.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h3>Sample QuickGrid Component</h3>
44

55
<div id="grid">
6-
<QuickGrid Items="@FilteredPeople" Pagination="@pagination" id="quick-grid" style="custom-style" class="custom-css">
6+
<QuickGrid Items="@FilteredPeople" Pagination="@pagination" id="quick-grid" style="color:red;" class="custom-css">
77
<PropertyColumn Property="@(p => p.PersonId)" Sortable="true" />
88
<PropertyColumn Property="@(p => p.firstName)" Sortable="true">
99
<ColumnOptions>

0 commit comments

Comments
 (0)