Skip to content

Commit

Permalink
More lint errors. (Need to update my linter)
Browse files Browse the repository at this point in the history
Signed-off-by: Keith Chong <[email protected]>
  • Loading branch information
keithchong committed Oct 31, 2024
1 parent 8591f8e commit e74f1a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const ApplicationDeploymentHistoryDetails = ({app, info, index}: props) =
/>

{showParameterDetails ? (
<div id={`'history-expanded'`} key={`'history-expanded'`} className={classNames('white-box','expanded-section')}>
<div id={`'history-expanded'`} key={`'history-expanded'`} className={classNames('white-box', 'expanded-section')}>
{getExpandedSection()}
<DataLoader
errorRenderer={err => {
Expand Down Expand Up @@ -155,7 +155,7 @@ export const ApplicationDeploymentHistoryDetails = ({app, info, index}: props) =
versionId={recentDeployments[index].id}
/>
{showSourceDetails.includes(i) ? (
<div id={`'history-expanded-'${i}`} key={`'history-expanded-'${i}`} className={classNames('white-box','expanded-section')}>
<div id={`'history-expanded-'${i}`} key={`'history-expanded-'${i}`} className={classNames('white-box', 'expanded-section')}>
<div id={`'history-expanded-'${i}`} key={`'history-expanded-'${i}`} className='white-box__details' style={{marginBottom: '0px'}}>
{getExpandedSection(i)}
<DataLoader
Expand Down

0 comments on commit e74f1a7

Please sign in to comment.