Skip to content

M20: Skins & Themes PoC ThemeProvider, Configuration, Base Class Wir…

8d7c794
Select commit
Loading
Failed to load commit list.
Merged

Release vNext #403

M20: Skins & Themes PoC ThemeProvider, Configuration, Base Class Wir…
8d7c794
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / CodeQL succeeded Mar 2, 2026 in 10s

6 new alerts

New alerts in code changed by this pull request

  • 4 warnings
  • 2 notes

Alerts not introduced by this pull request might have been detected because the code changes were too large.

See annotations below for details.

View all branch alerts.

Annotations

Check warning on line 37 in src/BlazorWebFormsComponents.Test/Theming/ThemeConfigurationFluentTests.cs

See this annotation in the file changed.

Code scanning / CodeQL

Dereferenced variable may be null Warning test

Variable
skin.Width
may be null at this access because it has a nullable type.

Check warning on line 203 in src/BlazorWebFormsComponents.Test/Theming/ThemeConfigurationFluentTests.cs

See this annotation in the file changed.

Code scanning / CodeQL

Dereferenced variable may be null Warning test

Variable
goSkin.Width
may be null at this access because it has a nullable type.

Check warning on line 57 in src/BlazorWebFormsComponents.Test/Timer/TimerTests.razor

See this annotation in the file changed.

Code scanning / CodeQL

Useless assignment to local variable Warning test

This assignment to
cut
is useless, since its value is never read.

Check warning on line 74 in src/BlazorWebFormsComponents.Test/Timer/TimerTests.razor

See this annotation in the file changed.

Code scanning / CodeQL

Useless assignment to local variable Warning test

This assignment to
cut
is useless, since its value is never read.

Check notice on line 57 in src/BlazorWebFormsComponents.Test/FileUpload/Render.razor

See this annotation in the file changed.

Code scanning / CodeQL

Missed opportunity to use Where Note test

This foreach loop
implicitly filters its target sequence
- consider filtering the sequence explicitly using '.Where(...)'.

Check notice on line 25 in src/BlazorWebFormsComponents/Style/Fonts/FontInfo.cs

See this annotation in the file changed.

Code scanning / CodeQL

Missed ternary opportunity Note

Both branches of this 'if' statement write to the same variable - consider using '?' to express intent better.