Refactor status component to exclude parentheses in status message
This commit is contained in:
		@@ -7,7 +7,7 @@
 | 
			
		||||
    <div class="pl-2 pr-1 text-xs font-bold tracking-widerr text-warning">
 | 
			
		||||
        {{ str($status)->before(':')->headline() }}
 | 
			
		||||
    </div>
 | 
			
		||||
    @if (!str($status)->startsWith('Proxy'))
 | 
			
		||||
    @if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
 | 
			
		||||
        <div class="text-xs text-warning">({{ str($status)->after(':') }})</div>
 | 
			
		||||
    @endif
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,7 @@
 | 
			
		||||
    <div class="pl-2 pr-1 text-xs font-bold tracking-wider text-success">
 | 
			
		||||
        {{ str($status)->before(':')->headline() }}
 | 
			
		||||
    </div>
 | 
			
		||||
    @if (!str($status)->startsWith('Proxy'))
 | 
			
		||||
    @if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
 | 
			
		||||
        <div class="text-xs text-success">({{ str($status)->after(':') }})</div>
 | 
			
		||||
    @endif
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user