0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-17 22:04:19 -05:00

fix(console): fix style issue caused by additional div wrapper (#3559)

This commit is contained in:
Gao Sun 2023-03-21 12:04:21 +08:00 committed by GitHub
parent 2794f6d07e
commit fa94ce36b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -39,3 +39,9 @@ input {
::-webkit-scrollbar-track {
background: transparent;
}
.appInsightsWrapper {
width: 100%;
height: 100%;
flex: 1;
}

View file

@ -46,5 +46,5 @@ export const withAppInsights = (Component: ComponentType) => {
return Component;
}
return withAITracking(reactPlugin, Component);
return withAITracking(reactPlugin, Component, undefined, 'appInsightsWrapper');
};