Skip to content

Commit 8ecdc65

Browse files
authored
Merge pull request #268 from magjac/add-a-search-box-to-the-editor
Add a search box to the editor
2 parents 46db61e + 185a858 commit 8ecdc65

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010
* Show graph in fullscreen mode by clicking the fullscreen button or pressing the 'f' key in the graph.
11+
* Editor search box. Opens with Ctrl-F.
1112

1213
### Changed
1314
* Updated [Graphviz](https://graphviz.org/) from version [2.50.0](https://gitlab.com/graphviz/graphviz/-/blob/main/CHANGELOG.md?ref_type=heads#2500-2021-12-04) to version [9.0.0](https://gitlab.com/graphviz/graphviz/-/blob/main/CHANGELOG.md?ref_type=heads#900-2023-09-11) through [@hpcc-js/wasm](https://github.com/hpcc-systems/hpcc-js-wasm) version [2.14.1](https://github.com/hpcc-systems/hpcc-js-wasm/blob/trunk/CHANGELOG.md#2141-2023-10-12), containing a lot of improvements and fixes, including a fix for:

src/TextEditor.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import ace from 'react-ace';
44
const AceEditor = typeof ace == 'function' ? ace : ace.default;
55
import 'ace-builds/src-noconflict/mode-dot.js';
66
import 'ace-builds/src-noconflict/theme-github.js';
7+
import 'ace-builds/src-noconflict/ext-searchbox.js';
78
import { IconButton } from '@mui/material';
89
import { ErrorOutline } from '@mui/icons-material';
910

0 commit comments

Comments
 (0)