Skip to content

Commit

Permalink
slight ui fix
Browse files Browse the repository at this point in the history
  • Loading branch information
its-a-feature committed Nov 8, 2024
1 parent 5fae8ee commit 55c95cb
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 12 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Payload Search wasn't properly filtering on filename or description
- Added an update to make sure that the payload is not deleted and the build phase was a success too

## [3.3.1-rc21] - 2024-11-5

Expand Down
6 changes: 6 additions & 0 deletions MythicReactUI/CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.54] - 2024-11-8

### Changed

- Fixed a bug when clicking to filter tasks on the command line

## [0.2.53] - 2024-11-6

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -751,8 +751,9 @@ export function CallbacksTabsTaskingInputPreMemo(props){
else if(value === " "){
if(backslash){
backslash = false;
buffer += " ";
return;
//buffer += " ";
buffer += "\\";
//return;
}
if(buffer.length > 0){
if(buffer[buffer.length-1] === buffer[0] && [`'`, `"`].includes(buffer[0])){
Expand Down Expand Up @@ -1562,6 +1563,8 @@ export function CallbacksTabsTaskingInputPreMemo(props){
<IconButton
color="info"
variant="contained"
disableRipple={true}
disableFocusRipple={true}
onClick={onSubmitCommandLine}
size="large"><SendIcon/></IconButton>
{props.filterTasks &&
Expand All @@ -1570,6 +1573,8 @@ export function CallbacksTabsTaskingInputPreMemo(props){
variant="contained"
onClick={onClickFilter}
style={{paddingLeft: 0}}
disableRipple={true}
disableFocusRipple={true}
size="large"><TuneIcon/></IconButton>
}
{commandPayloadType !== "" &&
Expand All @@ -1590,7 +1595,7 @@ export function CallbacksTabsTaskingInputPreMemo(props){
{openFilterOptionsDialog &&
<MythicDialog fullWidth={true} maxWidth="md" open={openFilterOptionsDialog}
onClose={()=>{setOpenFilterOptionsDialog(false);}}
innerDialog={<CallbacksTabsTaskingFilterDialog filterCommandOptions={loadedOptions} onSubmit={props.onSubmitFilter} filterOptions={props.filterOptions} onClose={()=>{setOpenFilterOptionsDialog(false);}} />}
innerDialog={<CallbacksTabsTaskingFilterDialog filterCommandOptions={loadedOptions.current} onSubmit={props.onSubmitFilter} filterOptions={props.filterOptions} onClose={()=>{setOpenFilterOptionsDialog(false);}} />}
/>
}
{openSelectCommandDialog &&
Expand Down
2 changes: 1 addition & 1 deletion MythicReactUI/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {snackActions} from './components/utilities/Snackbar';
import jwt_decode from 'jwt-decode';
import {meState} from './cache';

export const mythicUIVersion = "0.2.53";
export const mythicUIVersion = "0.2.54";

let fetchingNewToken = false;

Expand Down
6 changes: 3 additions & 3 deletions mythic-react-docker/mythic/public/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"files": {
"main.css": "/new/static/css/main.602591e6.css",
"main.js": "/new/static/js/main.add1b9f4.js",
"main.js": "/new/static/js/main.d7f5569c.js",
"static/media/mythic-red.png": "/new/static/media/mythic-red.203468a4e5240d239aa0.png",
"static/media/mythic_red_small.svg": "/new/static/media/mythic_red_small.793b41cc7135cdede246661ec232976b.svg",
"index.html": "/new/index.html",
"main.602591e6.css.map": "/new/static/css/main.602591e6.css.map",
"main.add1b9f4.js.map": "/new/static/js/main.add1b9f4.js.map"
"main.d7f5569c.js.map": "/new/static/js/main.d7f5569c.js.map"
},
"entrypoints": [
"static/css/main.602591e6.css",
"static/js/main.add1b9f4.js"
"static/js/main.d7f5569c.js"
]
}
2 changes: 1 addition & 1 deletion mythic-react-docker/mythic/public/index.html
Original file line number Diff line number Diff line change
@@ -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.add1b9f4.js"></script><link href="/new/static/css/main.602591e6.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!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.d7f5569c.js"></script><link href="/new/static/css/main.602591e6.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 55c95cb

Please sign in to comment.