Skip to content

Commit

Permalink
style(EngineProfile): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Jul 4, 2024
1 parent 4d6f909 commit c17a183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/app/tabs/EngineProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function EditableVersionSection(props) {

{(versionRecognized || !currentMinorVersion) ?
<PlatformHint className="form-group form-description" executionPlatform={ executionPlatform } displayLabel={ engineLabel } /> :
<UnknownVerisonHint className="form-group form-description" executionPlatform={ executionPlatform } executionPlatformVersion={ engineProfile.executionPlatformVersion } displayLabel={ engineLabel } />
<UnknownVersionHint className="form-group form-description" executionPlatform={ executionPlatform } executionPlatformVersion={ engineProfile.executionPlatformVersion } displayLabel={ engineLabel } />
}

<Section.Actions>
Expand Down Expand Up @@ -249,7 +249,7 @@ function PlatformHint(props) {
);
}

function UnknownVerisonHint(props) {
function UnknownVersionHint(props) {
const {
displayLabel,
className
Expand Down

0 comments on commit c17a183

Please sign in to comment.