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.
13 lines
431 B
13 lines
431 B
// This is empty for now, as I think it's not going to be necessary.
|
|
// This replaces Angular RouteParamsProvider implementation with a dummy one to keep the ball rolling
|
|
|
|
import { navigationLogger } from '@grafana/runtime';
|
|
|
|
export class RouteParamsProvider {
|
|
constructor() {
|
|
navigationLogger('Patch angular', false, 'RouteParamsProvider');
|
|
}
|
|
$get = () => {
|
|
// throw new Error('TODO: Refactor $routeParams');
|
|
};
|
|
}
|
|
|