File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
webdriver-ts-results/src/components/SelectionToolbar Expand file tree Collapse file tree 4 files changed +8
-8
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { useRootStore } from "@/reducer" ;
2
2
import DisplayModeSelector from "./DisplayModeSelector" ;
3
3
import DurationModeSelector from "./DurationModeSelector" ;
4
- import "./ModeSelectionPanel .css" ;
4
+ import "./ModeSelectors .css" ;
5
5
6
6
interface Props {
7
7
showDurationSelection : boolean ;
8
8
}
9
9
10
- const ModeSelectionPanel = ( { showDurationSelection } : Props ) => {
11
- console . log ( "ModeSelector " ) ;
10
+ const ModeSelectors = ( { showDurationSelection } : Props ) => {
11
+ console . log ( "ModeSelectors " ) ;
12
12
13
13
const displayMode = useRootStore ( ( state ) => state . displayMode ) ;
14
14
const cpuDurationMode = useRootStore ( ( state ) => state . cpuDurationMode ) ;
@@ -27,4 +27,4 @@ const ModeSelectionPanel = ({ showDurationSelection }: Props) => {
27
27
) ;
28
28
} ;
29
29
30
- export default ModeSelectionPanel ;
30
+ export default ModeSelectors ;
Original file line number Diff line number Diff line change 1
- import ModeSelectionPanel from "./ModeSelectionPanel " ;
1
+ import ModeSelectors from "./ModeSelectors " ;
2
2
3
- export default ModeSelectionPanel ;
3
+ export default ModeSelectors ;
Original file line number Diff line number Diff line change 1
1
import BenchmarkSelector from "./BenchmarkSelector" ;
2
2
import FrameworkSelector from "./FrameworkSelector" ;
3
- import ModeSelectionPanel from "./ModeSelectors" ;
3
+ import ModeSelectors from "./ModeSelectors" ;
4
4
import CopyPasteControls from "./CopyPasteControls" ;
5
5
import "./SelectionToolbar.css" ;
6
6
@@ -19,7 +19,7 @@ const SelectionToolbar = ({ showDurationSelection }: Props) => {
19
19
</ div >
20
20
< CopyPasteControls />
21
21
< div className = "select-toolbar__actions" >
22
- < ModeSelectionPanel showDurationSelection = { showDurationSelection } />
22
+ < ModeSelectors showDurationSelection = { showDurationSelection } />
23
23
</ div >
24
24
</ div >
25
25
) ;
You can’t perform that action at this time.
0 commit comments