Skip to content
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

Cleanup attempt #7... #82

Merged
merged 1 commit into from
Jul 2, 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
2 changes: 1 addition & 1 deletion src/Website/Company.Website/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Navigating>
<div style="position:absolute; top:30vh; width:100%; text-align:center">
<h1>Rock Pals</h1>
<h1>Rock Pal</h1>
<p><i class="fas fa-spin fa-spinner"></i> Finding your perfect pebble...</p>
</div>
</Navigating>
Expand Down
2 changes: 1 addition & 1 deletion src/Website/Company.Website/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inject NavigationManager _navigationManager

<div class="top-row pl-4 navbar navbar-light">
<h2 class="companyname" @onclick="NavigateHome">Rock Pals</h2>
<h2 class="companyname" @onclick="NavigateHome">Rock Pal</h2>
<ShoppingBasketSummary></ShoppingBasketSummary>
</div>

Expand Down
4 changes: 2 additions & 2 deletions src/Website/Company.Website/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Rock Pals</title>
<title>Rock Pal</title>

<!-- Set base href to OnlineStore if it's in the path name (current location of GitHub Pages) -->
<script type="text/javascript">
Expand Down Expand Up @@ -32,7 +32,7 @@
<body>
<app>
<div style="position:absolute; top:30vh; width:100%; text-align:center">
<h1>Rock Pals</h1>
<h1>Rock Pal</h1>
<p><i class="fas fa-spin fa-spinner"></i> finding your perfect pebble...</p>
</div>
</app>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ CERTIFICATE_ID=$(
-g $CONTAINER_APP_ENV_RESOURCE_GROUP \
-n $CONTAINER_APP_ENV_NAME \
--managed-certificates-only \
--query "[?properties.subjectName=='$CUSTOM_DOMAIN'].id" \
--query "[?contains(properties.subjectName,'$CUSTOM_DOMAIN')].id" \
--output tsv
)

Expand Down
Loading