mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	UI tweaks (#14369)
* Adjust text size * Make cursor consistent * Fix lint
This commit is contained in:
		
							parent
							
								
									25043278ab
								
							
						
					
					
						commit
						b75efcbca2
					
				@ -6,7 +6,6 @@ import logging
 | 
			
		||||
import os
 | 
			
		||||
import time
 | 
			
		||||
 | 
			
		||||
import onnxruntime as ort
 | 
			
		||||
from numpy import ndarray
 | 
			
		||||
from PIL import Image
 | 
			
		||||
from playhouse.shortcuts import model_to_dict
 | 
			
		||||
 | 
			
		||||
@ -112,7 +112,7 @@ export default function SearchThumbnailFooter({
 | 
			
		||||
        onEventUploaded={() => {}}
 | 
			
		||||
      />
 | 
			
		||||
 | 
			
		||||
      <div className="flex flex-col items-start">
 | 
			
		||||
      <div className="flex flex-col items-start text-xs">
 | 
			
		||||
        {searchResult.end_time ? (
 | 
			
		||||
          <TimeAgo time={searchResult.start_time * 1000} dense />
 | 
			
		||||
        ) : (
 | 
			
		||||
@ -182,11 +182,17 @@ export default function SearchThumbnailFooter({
 | 
			
		||||
                </a>
 | 
			
		||||
              </DropdownMenuItem>
 | 
			
		||||
            )}
 | 
			
		||||
            <DropdownMenuItem onClick={showObjectLifecycle}>
 | 
			
		||||
            <DropdownMenuItem
 | 
			
		||||
              className="cursor-pointer"
 | 
			
		||||
              onClick={showObjectLifecycle}
 | 
			
		||||
            >
 | 
			
		||||
              <FaArrowsRotate className="mr-2 size-4" />
 | 
			
		||||
              <span>View object lifecycle</span>
 | 
			
		||||
            </DropdownMenuItem>
 | 
			
		||||
            <DropdownMenuItem onClick={() => setDeleteDialogOpen(true)}>
 | 
			
		||||
            <DropdownMenuItem
 | 
			
		||||
              className="cursor-pointer"
 | 
			
		||||
              onClick={() => setDeleteDialogOpen(true)}
 | 
			
		||||
            >
 | 
			
		||||
              <LuTrash2 className="mr-2 size-4" />
 | 
			
		||||
              <span>Delete</span>
 | 
			
		||||
            </DropdownMenuItem>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user