You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/AzureAppConfigurationEmulator/Components/AzureTable.razor
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
@typeparam TItem
2
2
3
-
<tableclass="w-full border-collapse table-fixed">
3
+
<table@attributes="@AdditionalAttributes"class="w-full border-collapse table-fixed @(AdditionalAttributes?.TryGetValue("class", out var @class) is true ? @class : null)">
<td@attributes="@AdditionalAttributes"class="px-1 text-left truncate @(AdditionalAttributes?.TryGetValue("class", out var @class) is true ? @class : null)">
<th@attributes="@AdditionalAttributes"class="px-1 font-semibold text-left @(AdditionalAttributes?.TryGetValue("class", out var @class) is true ? @class : null)"scope="col">
0 commit comments