Skip to content

Commit

Permalink
fix: add ids to tab container in configuration page
Browse files Browse the repository at this point in the history
  • Loading branch information
harshpatel-crest committed May 11, 2021
1 parent 69eb050 commit 2a29d2f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/src/main/webapp/pages/Configuration/ConfigurationPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ function ConfigurationPage() {
style={
tab.name !== activeTabId ? { display: 'none' } : { display: 'block' }
}
id={`${tab.name}-tab`}
>
<ConfigurationTable
key={tab.name}
Expand All @@ -107,6 +108,7 @@ function ConfigurationPage() {
style={
tab.name !== activeTabId ? { display: 'none' } : { display: 'block' }
}
id={`${tab.name}-tab`}
>
<ConfigurationFormView key={tab.name} serviceName={tab.name} />
</div>
Expand Down

0 comments on commit 2a29d2f

Please sign in to comment.