[Explore] Fix lint error by updating field overrides tests (#64754)

Fix type error in fieldOverrides.test.ts
pull/64645/head
Connor Lindsey 3 years ago committed by GitHub
parent 4d789827e9
commit c29b6c07dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/grafana-data/src/field/fieldOverrides.test.ts

@ -696,7 +696,7 @@ describe('getLinksSupplier', () => {
},
],
},
display: (v) => ({ numeric: v, text: String(v) }),
display: (v) => ({ numeric: Number(v), text: String(v) }),
},
],
});

Loading…
Cancel
Save