1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-13 06:32:40 +01:00

Merge pull request #5808 from beganovich/v5-2505-change-company-alt-in-cp

(v5) Change company logo alt in the client portal
This commit is contained in:
Benjamin Beganović 2021-05-25 01:07:11 +02:00 committed by GitHub
commit aae7ffc504
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<div class="flex items-center h-16 flex-shrink-0 px-4 bg-white border-r justify-center z-10"> <div class="flex items-center h-16 flex-shrink-0 px-4 bg-white border-r justify-center z-10">
<a href="{{ route('client.dashboard') }}"> <a href="{{ route('client.dashboard') }}">
<img class="h-10 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}" <img class="h-10 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}"
alt="{{ config('app.name') }}"/> alt="{{ auth('contact')->user()->company->present()->name() }} logo"/>
</a> </a>
</div> </div>
<div class="h-0 flex-1 flex flex-col overflow-y-auto z-0 border-r"> <div class="h-0 flex-1 flex flex-col overflow-y-auto z-0 border-r">

View File

@ -9,7 +9,7 @@
</button> </button>
</div> </div>
<div class="flex-shrink-0 flex items-center px-4"> <div class="flex-shrink-0 flex items-center px-4">
<img class="h-8 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}" alt="{{ config('app.name') }}" /> <img class="h-8 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}" alt="{{ auth('contact')->user()->company->present()->name() }} logo" />
</div> </div>
<div class="mt-5 flex-1 h-0 overflow-y-auto"> <div class="mt-5 flex-1 h-0 overflow-y-auto">
<nav class="flex-1 pb-4 pt-0 bg-white"> <nav class="flex-1 pb-4 pt-0 bg-white">