We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a184cde commit f7c22f2Copy full SHA for f7c22f2
src/ProgrammerAl.Site/ProgrammerAl.Site/Pages/PresentationSlides.razor
@@ -2,6 +2,7 @@
2
@page "/drafts/{PostUrl}/slides/{Index:int}"
3
@using System.Text.Encodings.Web;
4
@using ProgrammerAl.Site.Components
5
+@using ProgrammerAl.Site.Components.AnimatedComponents
6
7
@if (PostData is object)
8
{
@@ -15,7 +16,13 @@
15
16
</HeadContent>
17
}
18
-@if (!string.IsNullOrWhiteSpace(SlidesHtml.Value))
19
+@if (string.IsNullOrWhiteSpace(SlidesHtml.Value))
20
+{
21
+ <div class="place-self-center">
22
+ <GreenSpinnerComponent TailwindCssHeightClass="h-12" TailwindCssWidthClass="w-12" />
23
+ </div>
24
+}
25
+else
26
27
@SlidesHtml
28
0 commit comments