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:
parent
2794f6d07e
commit
fa94ce36b8
2 changed files with 7 additions and 1 deletions
|
@ -39,3 +39,9 @@ input {
|
|||
::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.appInsightsWrapper {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex: 1;
|
||||
}
|
||||
|
|
|
@ -46,5 +46,5 @@ export const withAppInsights = (Component: ComponentType) => {
|
|||
return Component;
|
||||
}
|
||||
|
||||
return withAITracking(reactPlugin, Component);
|
||||
return withAITracking(reactPlugin, Component, undefined, 'appInsightsWrapper');
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue