Spaces:
Runtime error
Runtime error
Yash Worlikar commited on
Commit ·
d71e122
1
Parent(s): 8f9b0d0
Minor change
Browse files
Components/Pages/Home.razor
CHANGED
|
@@ -178,7 +178,7 @@
|
|
| 178 |
<tr>
|
| 179 |
<th>Names</th>
|
| 180 |
<th>Images</th>
|
| 181 |
-
<th>
|
| 182 |
</tr>
|
| 183 |
</thead>
|
| 184 |
<tbody>
|
|
@@ -188,7 +188,7 @@
|
|
| 188 |
<td><a href="@example.HostedImageUrl" target="_blank">@example.Name </a></td>
|
| 189 |
<td><img src="@example.HostedImageUrl" alt="Preview Image" class="img-fluid rounded" style="max-height: 150px; max-width: 150px" /></td>
|
| 190 |
<td>
|
| 191 |
-
<button class="btn btn-primary" @onclick="() => { UpdateExample(example.Name); ScrollToTop(); }">
|
| 192 |
See Results
|
| 193 |
</button>
|
| 194 |
</td>
|
|
|
|
| 178 |
<tr>
|
| 179 |
<th>Names</th>
|
| 180 |
<th>Images</th>
|
| 181 |
+
<th>Results</th>
|
| 182 |
</tr>
|
| 183 |
</thead>
|
| 184 |
<tbody>
|
|
|
|
| 188 |
<td><a href="@example.HostedImageUrl" target="_blank">@example.Name </a></td>
|
| 189 |
<td><img src="@example.HostedImageUrl" alt="Preview Image" class="img-fluid rounded" style="max-height: 150px; max-width: 150px" /></td>
|
| 190 |
<td>
|
| 191 |
+
<button class="btn btn-primary" @onclick="async () => {await UpdateExample(example.Name); ScrollToTop(); }">
|
| 192 |
See Results
|
| 193 |
</button>
|
| 194 |
</td>
|