You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
369 B

// This is empty for now, as I think it's not going to be necessary.
// This replaces Angular RouteProvider implementation with a dummy one to keep the ball rolling
import { navigationLogger } from '@grafana/runtime';
export class RouteProvider {
constructor() {
navigationLogger('Patch angular', false, 'RouteProvider');
}
$get() {
return this;
}
}