File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
mithril-explorer/components/EpochSettings Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- import React , { useEffect , useState } from 'react' ;
2
- import { Card , ListGroup } from "react-bootstrap" ;
1
+ import React , { useEffect , useState } from 'react' ;
2
+ import { Card , ListGroup } from "react-bootstrap" ;
3
3
import RawJsonButton from "../RawJsonButton" ;
4
- import { useSelector } from "react-redux" ;
4
+ import { useSelector } from "react-redux" ;
5
5
import ProtocolParameters from "../ProtocolParameters" ;
6
6
7
7
export default function EpochSettings ( props ) {
@@ -36,7 +36,7 @@ export default function EpochSettings(props) {
36
36
< div >
37
37
< h2 >
38
38
Epoch Settings
39
- < RawJsonButton href = { `${ aggregator } /epoch-settings` } variant = "outline-light" size = "sm" />
39
+ < RawJsonButton href = { `${ aggregator } /epoch-settings` } variant = "outline-light" size = "sm" />
40
40
</ h2 >
41
41
42
42
< Card >
@@ -46,7 +46,9 @@ export default function EpochSettings(props) {
46
46
< ListGroup . Item > { epochSettings . epoch } </ ListGroup . Item >
47
47
</ ListGroup >
48
48
< Card . Title > Protocol Parameters</ Card . Title >
49
- < ProtocolParameters protocolParameters = { epochSettings . protocol } />
49
+ < ProtocolParameters protocolParameters = { epochSettings . protocol } />
50
+ < Card . Title > Next Protocol Parameters</ Card . Title >
51
+ < ProtocolParameters protocolParameters = { epochSettings . next_protocol } />
50
52
</ Card . Body >
51
53
</ Card >
52
54
</ div >
You can’t perform that action at this time.
0 commit comments