Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
alpinebuster committed Oct 9, 2023
1 parent 7bcdf80 commit 67dec9f
Show file tree
Hide file tree
Showing 6 changed files with 461 additions and 165 deletions.
2 changes: 2 additions & 0 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"date-fns": "^2.24.0",
"diff-arrays-of-objects": "^1.1.8",
"html2canvas": "^1.0.0-rc.7",
"html-to-image": "^1.11.11",
"immutability-helper": "^3.0.0",
"insert-if": "^1.1.0",
"ip-address": "^7.1.0",
Expand All @@ -86,6 +87,7 @@
"rc-dock": "^3.2.9",
"react": "^17.0.1",
"react-aspen": "^1.1.0",
"react-arborist": "^3.2.0",
"react-checkbox-tree": "^1.7.2",
"react-data-grid": "^7.0.0-beta.33",
"react-dnd": "^16.0.1",
Expand Down
2 changes: 1 addition & 1 deletion web/pgadmin/dashboard/static/js/SystemStats/CPU.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {getGCD, getEpoch} from 'sources/utils';
import {ChartContainer} from '../Dashboard';
import { Grid } from '@material-ui/core';
import { DATA_POINT_SIZE } from 'sources/chartjs';
import StreamingChart from '../../../../static/js/components/PgChart/StreamingChart';
import StreamingChart from '../../../../static/js/components/pg_chart/StreamingChart';
import {useInterval, usePrevious} from 'sources/custom_hooks';
import axios from 'axios';
import { getStatsUrl, transformData, statsReducer, X_AXIS_LENGTH } from './utility.js';
Expand Down
2 changes: 1 addition & 1 deletion web/pgadmin/dashboard/static/js/SystemStats/Memory.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {getGCD, getEpoch} from 'sources/utils';
import {ChartContainer} from '../Dashboard';
import { Grid } from '@material-ui/core';
import { DATA_POINT_SIZE } from 'sources/chartjs';
import StreamingChart from '../../../../static/js/components/PgChart/StreamingChart';
import StreamingChart from '../../../../static/js/components/pg_chart/StreamingChart';
import {useInterval, usePrevious} from 'sources/custom_hooks';
import axios from 'axios';
import { getStatsUrl, transformData, statsReducer, X_AXIS_LENGTH } from './utility.js';
Expand Down
4 changes: 2 additions & 2 deletions web/pgadmin/dashboard/static/js/SystemStats/Storage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import {getGCD, getEpoch} from 'sources/utils';
import {ChartContainer} from '../Dashboard';
import { Grid } from '@material-ui/core';
import { DATA_POINT_SIZE } from 'sources/chartjs';
import StreamingChart from '../../../../static/js/components/PgChart/StreamingChart';
import StreamingChart from '../../../../static/js/components/pg_chart/StreamingChart';
import {useInterval, usePrevious} from 'sources/custom_hooks';
import axios from 'axios';
import { BarChart, PieChart } from '../../../../static/js/chartjs';
import { getStatsUrl, transformData, X_AXIS_LENGTH } from './utility.js';
import { toPrettySize } from '../../../../static/js/utils';
import clsx from 'clsx';
import { commonTableStyles } from '../../../../static/js/Theme';
import { commonTableStyles } from '../../../../static/js/theme';

const useStyles = makeStyles((theme) => ({
container: {
Expand Down
4 changes: 2 additions & 2 deletions web/pgadmin/dashboard/static/js/SystemStats/Summary.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ import {getGCD, getEpoch} from 'sources/utils';
import {ChartContainer} from '../Dashboard';
import { Grid } from '@material-ui/core';
import { DATA_POINT_SIZE } from 'sources/chartjs';
import StreamingChart from '../../../../static/js/components/PgChart/StreamingChart';
import StreamingChart from '../../../../static/js/components/pg_chart/StreamingChart';
import {useInterval, usePrevious} from 'sources/custom_hooks';
import axios from 'axios';
import { getStatsUrl, transformData,statsReducer, X_AXIS_LENGTH } from './utility.js';
import clsx from 'clsx';
import { commonTableStyles } from '../../../../static/js/Theme';
import { commonTableStyles } from '../../../../static/js/theme';

const useStyles = makeStyles((theme) => ({
container: {
Expand Down
Loading

0 comments on commit 67dec9f

Please sign in to comment.