1) Fixed an issue where loadingText message is not shown in SchemaView.

2) Fixed SonarQube Bugs and Code Smells.
This commit is contained in:
Akshay Joshi
2025-01-24 13:58:21 +05:30
parent 684818def1
commit 22b7ae6cdc
29 changed files with 67 additions and 82 deletions
+1 -1
View File
@@ -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
};
};