mirror of
https://github.com/PostHog/posthog.git
synced 2024-12-01 04:12:23 +01:00
bfe6f859ec
* upgrade typegen * check for upgrades in the interface * refactor plugin scene files * separate plugins needing updates * show an update button * show progress when checking * actually update plugins + ux improvements * open drawer if new required and unfilled field * better loading for plugins * fix frontend type error * fix backend test * Do tiny cleanup of version labels * clarify role of custom.d.ts * cache plugin update status for 30min, refresh update status on page load if stale * fix tests * Fix capitalization in updates check button * fix bad merge Co-authored-by: Michael Matloka <dev@twixes.com>
6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
// This fixes TS errors when importing a .svg file
|
|
declare module '*.svg' {
|
|
const content: any
|
|
export default content
|
|
}
|