Skip to content

Commit d68f4c7

Browse files
authored
Reduce image size (#20215)
1 parent 6fd6e82 commit d68f4c7

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

aspnetcore/blazor/components/lifecycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ Component lifecycle events:
2525
* Call [`OnInitialized{Async}`](#component-initialization-methods). If a <xref:System.Threading.Tasks.Task> is returned, the <xref:System.Threading.Tasks.Task> is awaited and then the component is rendered. If a <xref:System.Threading.Tasks.Task> isn't returned, render the component.
2626
1. Call [`OnParametersSet{Async}`](#after-parameters-are-set). If a <xref:System.Threading.Tasks.Task> is returned, the <xref:System.Threading.Tasks.Task> is awaited and then the component is rendered. If a <xref:System.Threading.Tasks.Task> isn't returned, render the component.
2727

28-
<img src="lifecycle/_static/lifecycle1.png" alt="Component lifecycle events of a Razor component in Blazor" style="max-width:350px;display:block;margin:0 auto">
28+
![Component lifecycle events of a Razor component in Blazor](lifecycle/_static/lifecycle1.png)
2929

3030
Document Object Model (DOM) event processing:
3131

3232
1. The event handler is run.
3333
1. If a <xref:System.Threading.Tasks.Task> is returned, the <xref:System.Threading.Tasks.Task> is awaited and then the component is rendered. If a <xref:System.Threading.Tasks.Task> isn't returned, the component is rendered.
3434

35-
<img src="lifecycle/_static/lifecycle2.png" alt="Document Object Model (DOM) event processing" style="max-width:350px;display:block;margin:0 auto">
35+
![Document Object Model (DOM) event processing](lifecycle/_static/lifecycle2.png)
3636

3737
The `Render` lifecycle:
3838

@@ -41,7 +41,7 @@ The `Render` lifecycle:
4141
1. Await the DOM to update.
4242
1. Call [`OnAfterRender{Async}`](#after-component-render).
4343

44-
<img src="lifecycle/_static/lifecycle3.png" alt="Render lifecycle" style="max-width:350px;display:block;margin:0 auto">
44+
![Render lifecycle](lifecycle/_static/lifecycle3.png)
4545

4646
Developer calls to [`StateHasChanged`](#state-changes) result in a render.
4747

-13.2 KB
Loading
-16.9 KB
Loading
-38.4 KB
Loading

0 commit comments

Comments
 (0)