File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed 
public/app/features/manage-dashboards/components Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function getSnapshots() {
1414    . then ( ( result : Snapshot [ ] )  =>  { 
1515      return  result . map ( ( snapshot )  =>  ( { 
1616        ...snapshot , 
17-         url : `${ config . appUrl } ${ snapshot . key }  , 
17+         url : `/ dashboard/snapshot/${ snapshot . key }  ,   // LOGZ.IO CHANGE :: DEV-46516 - fix shapshot url 
1818      } ) ) ; 
1919    } ) ; 
2020} 
Original file line number Diff line number Diff line change @@ -14,13 +14,14 @@ export interface Props {
1414
1515const  SnapshotListTableRowComponent  =  ( {  snapshot,  onRemove } : Props )  =>  { 
1616  const  url  =  snapshot . externalUrl  ||  snapshot . url ; 
17+   // LOGZ.IO CHANGE :: DEV-46516 - fix shapshot url, line 24 
1718  return  ( 
1819    < tr > 
1920      < td > 
2021        < a  href = { url } > { snapshot . name } </ a > 
2122      </ td > 
2223      < td > 
23-         < a  href = { url } > { url } </ a > 
24+         < a  href = { url } > { ` ${ window . location . origin } ${ url } ` } </ a > 
2425      </ td > 
2526      < td > 
2627        { snapshot . external  &&  ( 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments