Skip to content

Remove extra whitespace #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/web/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
<a href="https://learn.microsoft.com/azure/cosmos-db/nosql/quickstart-dotnet#walk-through-the-net-library-code" class="list-group-item list-group-item-action" target="_blank">
<i class="bi bi-book me-2"></i>
Walk through the code for this sample application
<small class="ms-1 align-top">
<small class="ms-1 align-top">
<i class="bi bi-box-arrow-up-right" style="font-size: 0.65rem;"></i>
</small>
</a>
<a href="https://learn.microsoft.com/azure/cosmos-db/nosql/" class="list-group-item list-group-item-action" target="_blank">
<i class="bi bi-lightbulb me-2"></i>
Learn more about Azure Cosmos DB for NoSQL
<small class="ms-1 align-top">
<small class="ms-1 align-top">
<i class="bi bi-box-arrow-up-right" style="font-size: 0.65rem;"></i>
</small>
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/web/Services/CosmosDbService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public async Task RunDemoAsync(Func<string, Task> writeOutputAync)
item: item,
partitionKey: new PartitionKey("gear-surf-surfboards")
);
// </create_item>
// </create_item>
await writeOutputAync($"Upserted item:\t{response.Resource}");
await writeOutputAync($"Status code:\t{response.StatusCode}");
await writeOutputAync($"Request charge:\t{response.RequestCharge:0.00}");
Expand Down