Skip to content

Commit f68c710

Browse files
authored
Merge pull request #1544 from devtron-labs/fix-input-label
feat: Updated version for Custom Input
2 parents a7b9be3 + 6876896 commit f68c710

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"homepage": "/dashboard",
66
"dependencies": {
7-
"@devtron-labs/devtron-fe-common-lib": "0.0.46",
7+
"@devtron-labs/devtron-fe-common-lib": "0.0.47",
88
"@rjsf/core": "^5.13.3",
99
"@rjsf/utils": "^5.13.3",
1010
"@rjsf/validator-ajv8": "^5.13.3",

src/components/gitOps/GitOpsConfiguration.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class GitOpsConfiguration extends Component<GitOpsProps, GitOpsState> {
173173
})
174174
})
175175
.catch((error) => {
176-
showError(error,true,true)
176+
showError(error, true, true)
177177
this.setState({ view: ViewType.ERROR, statusCode: error.code })
178178
})
179179
}
@@ -600,7 +600,7 @@ class GitOpsConfiguration extends Component<GitOpsProps, GitOpsState> {
600600
onChange={(event) => this.handleChange(event, 'host')}
601601
name="Enter host"
602602
error={this.state.isError.host}
603-
label={getGitOpsLabel}
603+
label={getGitOpsLabel()}
604604
tabIndex={1}
605605
labelClassName="gitops__id form__label--fs-13 fw-5 fs-13 mb-4"
606606
dataTestid={

0 commit comments

Comments
 (0)