mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed issues found in testing of react-table upgrade changes. #7419
UI fixes and improvement in System Stats Dashboard.
This commit is contained in:
@@ -22,13 +22,14 @@ global.matchMedia = (query)=>({
|
||||
dispatchEvent: jest.fn(),
|
||||
});
|
||||
|
||||
class IntersectionObserver {
|
||||
class GeneralObserver {
|
||||
observe() {return null;}
|
||||
unobserve() {return null;}
|
||||
disconnect() {return null;}
|
||||
}
|
||||
|
||||
global.IntersectionObserver = IntersectionObserver;
|
||||
global.IntersectionObserver = GeneralObserver;
|
||||
global.ResizeObserver = GeneralObserver;
|
||||
|
||||
import lodash from 'lodash';
|
||||
global._ = lodash;
|
||||
|
||||
Reference in New Issue
Block a user