mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-19 01:15:04 -05:00
1) Fixed an issue where loadingText message is not shown in SchemaView.
2) Fixed SonarQube Bugs and Code Smells.
This commit is contained in:
@@ -155,7 +155,7 @@ export function Table({
|
||||
// Render the UI for your table
|
||||
const tableRef = useRef();
|
||||
let flatData = [];
|
||||
let fetchMoreOnBottomReached = undefined;
|
||||
let fetchMoreOnBottomReached;
|
||||
let totalFetched = 0;
|
||||
let totalDBRowCount = 0;
|
||||
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/////////////////////////////////////////////////////////////
|
||||
//
|
||||
// pgAdmin 4 - PostgreSQL Tools
|
||||
//
|
||||
// Copyright (C) 2013 - 2025, The pgAdmin Development Team
|
||||
// This software is released under the PostgreSQL Licence
|
||||
//
|
||||
//////////////////////////////////////////////////////////////
|
||||
|
||||
import { useSingleAndDoubleClick } from '../../../custom_hooks';
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
@@ -15,4 +24,4 @@ DoubleClickHandler.propTypes = {
|
||||
onSingleClick: PropTypes.func,
|
||||
onDoubleClick: PropTypes.func,
|
||||
children: CustomPropTypes.children
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user