Skip to content

Commit e204be7

Browse files
committed
fixing UI task button bug
1 parent a8b8bfb commit e204be7

File tree

8 files changed

+17
-10
lines changed

8 files changed

+17
-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.1.79] - 2024-03-06
8+
9+
### Changed
10+
11+
- Fixed bug with browser scripts tasking the wrong callback for dynamic query parameters
12+
713
## [0.1.78] - 2024-03-05
814

915
### Changed

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const getLoadedCommandsBasedOnInput = ({cmd, ui_feature}) => {
2121
query GetLoadedCommandsQuery($callback_id: Int!, $ui_feature: jsonb, $cmd: String) {
2222
callback_by_pk(id: $callback_id){
2323
operation_id
24+
id
2425
display_id
2526
active
2627
payload {
@@ -344,7 +345,7 @@ export const TaskFromUIButton = ({callback_id, callback_ids, cmd, ui_feature, pa
344345
{openParametersDialog &&
345346
<MythicDialog fullWidth={true} maxWidth="lg" open={openParametersDialog}
346347
onClose={()=>{setOpenParametersDialog(false);onTasked({tasked: false});}}
347-
innerDialog={<TaskParametersDialog command={selectedCommand} callback_id={callbackData.callback_by_pk.display_id} payloadtype_id={callbackData.callback_by_pk.payload.payloadtype.id}
348+
innerDialog={<TaskParametersDialog command={selectedCommand} callback_id={callbackData.callback_by_pk.id} payloadtype_id={callbackData.callback_by_pk.payload.payloadtype.id}
348349
operation_id={callbackData.callback_by_pk.operation_id}
349350
onSubmit={submitParametersDialog} onClose={()=>{setOpenParametersDialog(false);onTasked({tasked: false});}} />}
350351
/>

MythicReactUI/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import jwt_decode from 'jwt-decode';
1515
import {meState} from './cache';
1616

1717
export const mythicVersion = "3.2.19";
18-
export const mythicUIVersion = "0.1.78";
18+
export const mythicUIVersion = "0.1.79";
1919

2020
let fetchingNewToken = false;
2121

Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"files": {
33
"main.css": "/new/static/css/main.00d51b79.css",
4-
"main.js": "/new/static/js/main.87ba9671.js",
4+
"main.js": "/new/static/js/main.3e0ee687.js",
55
"static/media/[email protected]": "/new/static/media/[email protected]",
66
"static/media/mythic_red_small.svg": "/new/static/media/mythic_red_small.793b41cc7135cdede246661ec232976b.svg",
77
"index.html": "/new/index.html",
88
"main.00d51b79.css.map": "/new/static/css/main.00d51b79.css.map",
9-
"main.87ba9671.js.map": "/new/static/js/main.87ba9671.js.map"
9+
"main.3e0ee687.js.map": "/new/static/js/main.3e0ee687.js.map"
1010
},
1111
"entrypoints": [
1212
"static/css/main.00d51b79.css",
13-
"static/js/main.87ba9671.js"
13+
"static/js/main.3e0ee687.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.87ba9671.js"></script><link href="/new/static/css/main.00d51b79.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.3e0ee687.js"></script><link href="/new/static/css/main.00d51b79.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.87ba9671.js mythic-react-docker/mythic/public/static/js/main.3e0ee687.js

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

mythic-react-docker/mythic/public/static/js/main.87ba9671.js.map mythic-react-docker/mythic/public/static/js/main.3e0ee687.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)