Skip to content

Commit b28c918

Browse files
committed
small fix for browser tables
1 parent 5cf2486 commit b28c918

File tree

8 files changed

+16
-10
lines changed

8 files changed

+16
-10
lines changed

MythicReactUI/CHANGELOG.MD

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.10] - 2024-07-31
8+
9+
### Changed
10+
11+
- small fix for browser script tables with titles not having column handles properly aligned
12+
713
## [0.2.9] - 2024-07-31
814

915
### Changed

MythicReactUI/src/components/pages/Callbacks/ResponseDisplayTable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ export const ResponseDisplayTable = ({table, callback_id, expand, task}) =>{
562562
}, [table.rows])
563563
const sortColumn = table.headers.findIndex((column) => column.plaintext === sortData.sortKey);
564564
const tableStyle = React.useMemo( () => {
565-
return expand ? {flexGrow: 1, width: "99%",} : {height: dataHeight}
565+
return expand ? {flexGrow: 1, width: "99%", position: "relative"} : {height: dataHeight, position: "relative"}
566566
}, [expand, dataHeight]);
567567
return (
568568
<div style={{height: "100%", display: "flex", flexDirection: "column", position: "relative", width: "100%"}}>

MythicReactUI/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {snackActions} from './components/utilities/Snackbar';
1414
import jwt_decode from 'jwt-decode';
1515
import {meState} from './cache';
1616

17-
export const mythicUIVersion = "0.2.9";
17+
export const mythicUIVersion = "0.2.10";
1818

1919
let fetchingNewToken = false;
2020

Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"files": {
33
"main.css": "/new/static/css/main.7e143bf2.css",
4-
"main.js": "/new/static/js/main.57f25303.js",
4+
"main.js": "/new/static/js/main.751a3b5e.js",
55
"static/media/mythic-red.png": "/new/static/media/mythic-red.203468a4e5240d239aa0.png",
66
"static/media/mythic_red_small.svg": "/new/static/media/mythic_red_small.793b41cc7135cdede246661ec232976b.svg",
77
"index.html": "/new/index.html",
88
"main.7e143bf2.css.map": "/new/static/css/main.7e143bf2.css.map",
9-
"main.57f25303.js.map": "/new/static/js/main.57f25303.js.map"
9+
"main.751a3b5e.js.map": "/new/static/js/main.751a3b5e.js.map"
1010
},
1111
"entrypoints": [
1212
"static/css/main.7e143bf2.css",
13-
"static/js/main.57f25303.js"
13+
"static/js/main.751a3b5e.js"
1414
]
1515
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/new/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><link rel="apple-touch-icon" href="/new/logo192.png"/><link rel="manifest" href="/new/manifest.json"/><title>Mythic</title><script defer="defer" src="/new/static/js/main.57f25303.js"></script><link href="/new/static/css/main.7e143bf2.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/new/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><link rel="apple-touch-icon" href="/new/logo192.png"/><link rel="manifest" href="/new/manifest.json"/><title>Mythic</title><script defer="defer" src="/new/static/js/main.751a3b5e.js"></script><link href="/new/static/css/main.7e143bf2.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

mythic-react-docker/mythic/public/static/js/main.57f25303.js mythic-react-docker/mythic/public/static/js/main.751a3b5e.js

+3-3
Large diffs are not rendered by default.

mythic-react-docker/mythic/public/static/js/main.57f25303.js.map mythic-react-docker/mythic/public/static/js/main.751a3b5e.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)