Skip to content

Commit

Permalink
fix(ui): Minor fix dashboard underline in links
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Jan 23, 2024
1 parent b807c9c commit db2f530
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions resources/views/lead/partials/_list.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<td>{{ $lead->business_name }}</td>
<td class="text-nowrap text-center">
@if($lead->phone)
<a href="tel:{{ $lead->phone }}" title="{{ $lead->phone }}" target="_blank" class="link-secondary">
<a href="tel:{{ $lead->phone }}" title="{{ $lead->phone }}" target="_blank" class="link-secondary text-decoration-none">
<i class="las la-phone fs-4"></i>
</a>
@if($lead->phone_verified)
Expand All @@ -43,7 +43,7 @@
<td class="text-nowrap text-center">
@if($lead->mobile)
<a href="https://api.whatsapp.com/send/?phone={{ $lead->mobile }}&text={{ __('Hello') }}"
title="{{ $lead->mobile }}" target="_blank" class="link-secondary">
title="{{ $lead->mobile }}" target="_blank" class="link-secondary text-decoration-none">
<i class="las la-mobile fs-4"></i>
</a>
@if($lead->mobile_verified)
Expand All @@ -55,7 +55,7 @@
</td>
<td class="text-nowrap text-center">
@if($lead->email)
<a href="mailto:{{ $lead->email }}" title="{{ $lead->email }}" class="link-secondary">
<a href="mailto:{{ $lead->email }}" title="{{ $lead->email }}" class="link-secondary text-decoration-none">
<i class="las la-envelope fs-4"></i>
</a>
@if($lead->email_verified)
Expand All @@ -67,7 +67,7 @@
</td>
<td class="text-center">
@isset($lead->website)
<a href="{{ $lead->website }}" title="{{ $lead->website }}" target="_blank" class="link-secondary">
<a href="{{ $lead->website }}" title="{{ $lead->website }}" target="_blank" class="link-secondary text-decoration-none">
<i class="las la-globe fs-4"></i>
</a>
@endisset
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

const APP_VERSION = '3.4.9';
const APP_VERSION = '3.4.10';

0 comments on commit db2f530

Please sign in to comment.