Skip to content

Commit

Permalink
Merge pull request #50 from smswithoutborders/develop
Browse files Browse the repository at this point in the history
update to fetch data on telemetry board
  • Loading branch information
mildrette authored Jan 9, 2025
2 parents 7b23974 + 05f1cc8 commit 4541f90
Show file tree
Hide file tree
Showing 9 changed files with 738 additions and 538 deletions.
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
"editor.formatOnType": false, // required
"editor.formatOnPaste": true, // optional
"editor.formatOnSave": true, // optional
"editor.formatOnSaveMode": "file", // required to format on save
"files.autoSave": "onFocusChange", // optional but recommended
"vs-code-prettier-eslint.prettierLast": false // set as "true" to run 'prettier' last not first
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SMSWithoutBorders Dashboard
# SMSWithoutBorders Visibility Dashboard

Welcome to the SMSWithoutBorders Dashboard, a powerful tool designed to measure the reliability of gateway clients and available gateway servers.

Expand Down
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.16.1",
"@mui/material": "^6.1.9",
"@mui/styles": "^5.16.0",
"@mui/x-charts": "^6.19.5",
"@mui/x-data-grid": "^6.19.8",
Expand All @@ -23,7 +23,7 @@
"apexcharts": "^3.50.0",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.3",
"chart.js": "^4.4.6",
"d3": "^7.9.0",
"dayjs": "^1.11.11",
"google-charts": "^2.0.0",
Expand All @@ -34,7 +34,7 @@
"react-chartjs-2": "^5.2.0",
"react-country-flag": "^3.1.0",
"react-dom": "^18.2.0",
"react-google-charts": "^4.0.1",
"react-google-charts": "^5.2.1",
"react-icons": "^5.0.1",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.22.3",
Expand Down Expand Up @@ -71,15 +71,18 @@
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.0.0",
"eslint": "^8.57.0",
"@typescript-eslint/parser": "^5.0.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-summary": "^1.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.1.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
Expand Down
1 change: 0 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<script src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

<title>SMSWithoutBorders Visibility Dashboard</title>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions src/Components/MobileNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ function MobileNav({ darkMode, toggleDarkMode }) {
<Typography textAlign="center">Resilience</Typography>
</MenuItem>

<MenuItem onClick={handleCloseNavMenu} component={Link} to="/OpenTelemetry">
<Typography textAlign="center">Open Telemetry</Typography>
<MenuItem onClick={handleCloseNavMenu} component={Link} href="/OpenTelemetry">
<Typography textAlign="center">Open Telematry</Typography>
</MenuItem>

<MenuItem onClick={handleCloseNavMenu} component={Link} href="/help">
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function ResponsiveDrawer() {
<ListItemIcon>
<FaTable />
</ListItemIcon>
<ListItemText>Open Telemetry</ListItemText>
<ListItemText>Open Telematry</ListItemText>
</ListItemButton>
</ListItem>
<ListItem>
Expand Down
Loading

0 comments on commit 4541f90

Please sign in to comment.