mirror of
https://github.com/grafana/grafana.git
synced 2026-02-03 20:49:50 -05:00
* Gauge: Delete radialbar plugin to avoid migrations * fix frontend unit test * update from CI issues
6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
import { config } from '@grafana/runtime';
|
|
|
|
import { plugin as pluginV1 } from './v1/module';
|
|
import { plugin as pluginV2 } from './v2/module';
|
|
|
|
export const plugin = config.featureToggles.newGauge ? pluginV2 : pluginV1;
|