File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
project-fortis-interfaces/src/components/Admin Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const SETTINGS_TAB = 0;
1818const WATCHLIST_TAB = 1 ;
1919const USERS_TAB = 2 ;
2020const CUSTOM_EVENTS_TAB = 3 ;
21- const TRUSTED_SOURCES = 4 ;
21+ const TRUSTED_SOURCES_TAB = 4 ;
2222const BLACKLIST_TAB = 5 ;
2323const STREAM_TAB = 6 ;
2424
@@ -69,7 +69,7 @@ class Admin extends React.Component {
6969
7070 const shouldShowRestartPipelineButton =
7171 index === WATCHLIST_TAB ||
72- index === TRUSTED_SOURCES ||
72+ index === TRUSTED_SOURCES_TAB ||
7373 index === STREAM_TAB ;
7474
7575 return (
@@ -124,7 +124,7 @@ class Admin extends React.Component {
124124 < TabPanel >
125125 < h2 > Trusted Sources</ h2 >
126126 < div className = "adminTable" >
127- { settings && settings . properties && index === TRUSTED_SOURCES &&
127+ { settings && settings . properties && index === TRUSTED_SOURCES_TAB &&
128128 < div >
129129 < TrustedSources { ...this . props } />
130130 </ div > }
You can’t perform that action at this time.
0 commit comments