Skip to content

Commit

Permalink
fixing build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Knopf committed Jan 11, 2025
1 parent c7deb5f commit ea1e6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/src/Blog/Resources/Views/Lit/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<td style="white-space: nowrap;text-align: center;">@data.WindDirectionText</td>
<td style="white-space: nowrap;text-align: center;">@data.Temp F</td>
<td style="white-space: nowrap;text-align: center;"><span class="badge badge-secondary" style="background-color: @(GetCloudCoverColor(data.CloudCover)); color: black;">@Math.Round(data.CloudCover)%</span></td>
<td style="white-space: nowrap;text-align: center;"><span title="Type: @data.PrecipType.ToUpper()" class="badge badge-secondary" style="background-color: @(GetPrecipColor(data.TotalPrecip)); color: black;">@Math.Round(data.TotalPrecip, 2).ToString("N2")</span></td>
<td style="white-space: nowrap;text-align: center;"><span title="Type: @(data.PrecipType?.ToUpper())" class="badge badge-secondary" style="background-color: @(GetPrecipColor(data.TotalPrecip)); color: black;">@Math.Round(data.TotalPrecip, 2).ToString("N2")</span></td>
</tr>
}
</tbody>
Expand Down

0 comments on commit ea1e6cf

Please sign in to comment.