File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,18 +42,19 @@ export const StatusIndicator: React.FC<StatusIndicatorProps> = ({ status }) => {
4242 const aheadTooltip = useTooltip ( `${ branchInfo ?. ahead } commits ahead` ) ;
4343 const behindTooltip = useTooltip ( `${ branchInfo ?. behind } commits behind` ) ;
4444 const trackingTooltip = useTooltip ( `Tracking: ${ branchInfo ?. tracking } ` ) ;
45- const updatesTooltip = useTooltip ( 'Updates available to pull/update' ) ;
45+ const updatesTooltip = useTooltip (
46+ 'Remote has new commits for this repository. Fetch or pull to sync your local branch.'
47+ ) ;
4648
4749 return (
4850 < div className = "flex items-center justify-end flex-wrap gap-x-3 gap-y-1 text-xs" >
49- { hasUpdates && (
51+ { hasUpdates && (
5052 < span
5153 // @ts -ignore
5254 { ...updatesTooltip }
5355 className = "flex items-center text-cyan-600 dark:text-cyan-400 font-semibold"
5456 >
55- < CloudArrowDownIcon className = "h-4 w-4 mr-1" />
56- < span > Updates Available</ span >
57+ < CloudArrowDownIcon className = "h-4 w-4" />
5758 </ span >
5859 ) }
5960 { branchInfo && ( branchInfo . ahead > 0 || branchInfo . behind > 0 ) && (
You can’t perform that action at this time.
0 commit comments