Skip to content

Commit

Permalink
[wasm] Supress policheck warning in blazor-sample (#92711)
Browse files Browse the repository at this point in the history
* [wasm] Supress policheck warning in blazor-sample

Replace the offending part in the layout name. I think the suit-spade
is false positive, I used just sp in place of spade to silence it.

* Feedback
  • Loading branch information
radekdoulik authored Sep 29, 2023
1 parent 8ff1893 commit e81671f
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ url("./fonts/bootstrap-icons.woff?1fa40e8900654d2863d011707b9fb6f2") format("wof
.bi-layout-text-window-reverse::before { content: "\f463"; }
.bi-layout-text-window::before { content: "\f464"; }
.bi-layout-three-columns::before { content: "\f465"; }
.bi-layout-wtf::before { content: "\f466"; }
.bi-layout-random::before { content: "\f466"; }
.bi-life-preserver::before { content: "\f467"; }
.bi-lightbulb-fill::before { content: "\f468"; }
.bi-lightbulb-off-fill::before { content: "\f469"; }
Expand Down Expand Up @@ -1202,14 +1202,14 @@ url("./fonts/bootstrap-icons.woff?1fa40e8900654d2863d011707b9fb6f2") format("wof
.bi-stopwatch-fill::before { content: "\f596"; }
.bi-stopwatch::before { content: "\f597"; }
.bi-subtract::before { content: "\f598"; }
.bi-suit-club-fill::before { content: "\f599"; }
.bi-suit-club::before { content: "\f59a"; }
.bi-suit-diamond-fill::before { content: "\f59b"; }
.bi-suit-diamond::before { content: "\f59c"; }
.bi-suit-heart-fill::before { content: "\f59d"; }
.bi-suit-heart::before { content: "\f59e"; }
.bi-suit-spade-fill::before { content: "\f59f"; }
.bi-suit-spade::before { content: "\f5a0"; }
.bi-suit-club-symbol-fill::before { content: "\f599"; }
.bi-suit-club-symbol::before { content: "\f59a"; }
.bi-suit-diamond-symbol-fill::before { content: "\f59b"; }
.bi-suit-diamond-symbol::before { content: "\f59c"; }
.bi-suit-heart-symbol-fill::before { content: "\f59d"; }
.bi-suit-heart-symbol::before { content: "\f59e"; }
.bi-suit-spade-symbol-fill::before { content: "\f59f"; }
.bi-suit-spade-symbol::before { content: "\f5a0"; }
.bi-sun-fill::before { content: "\f5a1"; }
.bi-sun::before { content: "\f5a2"; }
.bi-sunglasses::before { content: "\f5a3"; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@
"layout-text-window-reverse": 62563,
"layout-text-window": 62564,
"layout-three-columns": 62565,
"layout-wtf": 62566,
"layout-random": 62566,
"life-preserver": 62567,
"lightbulb-fill": 62568,
"lightbulb-off-fill": 62569,
Expand Down Expand Up @@ -1175,14 +1175,14 @@
"stopwatch-fill": 62870,
"stopwatch": 62871,
"subtract": 62872,
"suit-club-fill": 62873,
"suit-club": 62874,
"suit-diamond-fill": 62875,
"suit-diamond": 62876,
"suit-heart-fill": 62877,
"suit-heart": 62878,
"suit-spade-fill": 62879,
"suit-spade": 62880,
"suit-club-symbol-fill": 62873,
"suit-club-symbol": 62874,
"suit-diamond-symbol-fill": 62875,
"suit-diamond-symbol": 62876,
"suit-heart-symbol-fill": 62877,
"suit-heart-symbol": 62878,
"suit-spade-symbol-fill": 62879,
"suit-spade-symbol": 62880,
"sun-fill": 62881,
"sun": 62882,
"sunglasses": 62883,
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ $bootstrap-icons-map: (
"layout-text-window-reverse": "\f463",
"layout-text-window": "\f464",
"layout-three-columns": "\f465",
"layout-wtf": "\f466",
"layout-random": "\f466",
"life-preserver": "\f467",
"lightbulb-fill": "\f468",
"lightbulb-off-fill": "\f469",
Expand Down Expand Up @@ -1209,14 +1209,14 @@ $bootstrap-icons-map: (
"stopwatch-fill": "\f596",
"stopwatch": "\f597",
"subtract": "\f598",
"suit-club-fill": "\f599",
"suit-club": "\f59a",
"suit-diamond-fill": "\f59b",
"suit-diamond": "\f59c",
"suit-heart-fill": "\f59d",
"suit-heart": "\f59e",
"suit-spade-fill": "\f59f",
"suit-spade": "\f5a0",
"suit-club-symbol-fill": "\f599",
"suit-club-symbol": "\f59a",
"suit-diamond-symbol-fill": "\f59b",
"suit-diamond-symbol": "\f59c",
"suit-heart-symbol-fill": "\f59d",
"suit-heart-symbol": "\f59e",
"suit-spade-symbol-fill": "\f59f",
"suit-spade-symbol": "\f5a0",
"sun-fill": "\f5a1",
"sun": "\f5a2",
"sunglasses": "\f5a3",
Expand Down

0 comments on commit e81671f

Please sign in to comment.