Skip to content

Commit

Permalink
Fixed the navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
kreut committed Oct 22, 2024
1 parent 46f0238 commit 5c990b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Http/Middleware/SetAppVersionHeader.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function handle($request, Closure $next)
//$app_version = env('VAPOR_COMMIT_HASH') ? env('VAPOR_COMMIT_HASH') : '1.0';
if(!$response instanceof StreamedResponse) {
//https://stackoverflow.com/questions/72060913/call-to-undefined-method-symfony-component-httpfoundation-streamedresponsehead
$response->header('appversion', '2.63');
$response->header('appversion', '2.64');
}
return $response;
}
Expand Down
4 changes: 2 additions & 2 deletions resources/js/components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
extra-email-modal-text="Please use this form to contact us regarding general questions or issues. If you have a course specific question, please contact your instructor using your own email client."
:from-user="user" title="Contact Us" type="contact_us" subject="General Inquiry"
/>
<div v-if="showNavBar" id="navbar">
<div v-if="showNavBar" id="navbar" >
<b-modal id="modal-switch-account"
title="Switch Account"
>
{{ linkedAccounts }}
</b-modal>
<b-navbar toggleable="lg">
<b-navbar toggleable="lg" class="pt-0 pb-0">
<LibreOne size="sm" class="m-1"/>

<b-navbar-brand>
Expand Down

0 comments on commit 5c990b0

Please sign in to comment.