Merge pull request #1546 from Monilprajapati/2.0.0

Page breaking fixes
This commit is contained in:
Frikky
2024-11-12 11:52:18 +01:00
committed by GitHub
5 changed files with 7 additions and 3 deletions
+2 -1
View File
@@ -21,6 +21,7 @@
"@uiw/codemirror-themes": "^4.21.9", "@uiw/codemirror-themes": "^4.21.9",
"@uiw/react-codemirror": "^4.21.21", "@uiw/react-codemirror": "^4.21.21",
"algoliasearch": "^4.8.3", "algoliasearch": "^4.8.3",
"chart.js": "^3.0.0",
"class-transformer": "^0.2.0", "class-transformer": "^0.2.0",
"codemirror": "^6.0.1", "codemirror": "^6.0.1",
"cpx": "^1.5.0", "cpx": "^1.5.0",
@@ -60,7 +61,7 @@
"react-alice-carousel": "^2.6.4", "react-alice-carousel": "^2.6.4",
"react-avatar-editor": "^11.1.0", "react-avatar-editor": "^11.1.0",
"react-beforeunload": "^2.2.1", "react-beforeunload": "^2.2.1",
"react-chartjs-2": "^5.2.0", "react-chartjs-2": "^5.0.0",
"react-cookie": "^4.0.1", "react-cookie": "^4.0.1",
"react-cytoscapejs": "^2.0.0", "react-cytoscapejs": "^2.0.0",
"react-device-detect": "^2.2.3", "react-device-detect": "^2.2.3",
+1 -1
View File
@@ -48,7 +48,7 @@ import 'react-toastify/dist/ReactToastify.css';
import Drift from "react-driftjs"; import Drift from "react-driftjs";
import { AppContext } from './context/contextApi.jsx'; import { AppContext } from './context/ContextApi.jsx';
// Production - backend proxy forwarding in nginx // Production - backend proxy forwarding in nginx
var globalUrl = window.location.origin; var globalUrl = window.location.origin;
@@ -1,5 +1,8 @@
import React from 'react'; import React from 'react';
import { Bar } from 'react-chartjs-2'; import { Bar } from 'react-chartjs-2';
import { Chart, registerables } from 'chart.js';
Chart.register(...registerables);
const HealthBarChart = (props) => { const HealthBarChart = (props) => {
const { globalUrl, filteredData, options, onBarClick } = props; const { globalUrl, filteredData, options, onBarClick } = props;
+1 -1
View File
@@ -1294,7 +1294,7 @@ const DocsWrapper = memo(({userdata, children })=>{
return ( return (
<div style={{ <div style={{
minHeight: 1000, zIndex: 1, minHeight: 1000, zIndex: 1,
maxWidth: Math.min(!userdata.support ? 1920 : leftSideBarOpenByClick ? windowWidth - 300 : windowWidth - 200, 1920), maxWidth: Math.min(!userdata?.support ? 1920 : leftSideBarOpenByClick ? windowWidth - 300 : windowWidth - 200, 1920),
minWidth: isMobile ? null : userdata?.support ? leftSideBarOpenByClick ? 800 : 900 : null, margin: "auto", minWidth: isMobile ? null : userdata?.support ? leftSideBarOpenByClick ? 800 : 900 : null, margin: "auto",
position: userdata?.support && leftSideBarOpenByClick ? "relative" : "static", position: userdata?.support && leftSideBarOpenByClick ? "relative" : "static",
left: userdata?.support && leftSideBarOpenByClick ? 120 : userdata?.support && !leftSideBarOpenByClick ? 80 : 0, left: userdata?.support && leftSideBarOpenByClick ? 120 : userdata?.support && !leftSideBarOpenByClick ? 80 : 0,