Skip to content

Commit

Permalink
fix no-permissions button (#2682)
Browse files Browse the repository at this point in the history
* fix no-permissions button

* bump
  • Loading branch information
mrCherry97 authored Dec 8, 2023
1 parent 38c5b23 commit 9f7406f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/web/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: busola
image: europe-docker.pkg.dev/kyma-project/dev/busola-web:PR-2680
image: europe-docker.pkg.dev/kyma-project/dev/busola-web:PR-2682
imagePullPolicy: Always
resources:
requests:
Expand Down
3 changes: 2 additions & 1 deletion src/components/NoPermissions/NoPermissions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function NoPermissions() {
<Text style={spacing.sapUiMediumMarginTopBottom}>
{t('no-permissions.enter-namespace-name')}
</Text>
<form className="bsl-display-flex" onSubmit={updateKubeconfig}>
<form className="bsl-display-flex">
<Input
style={spacing.sapUiNoMargin}
placeholder={t('no-permissions.enter-namespace-name-placeholder')}
Expand All @@ -53,6 +53,7 @@ function NoPermissions() {
design="Emphasized"
className="update-namespace-button"
disabled={!namespaceName}
onClick={() => updateKubeconfig()}
>
{t('common.buttons.save')}
</Button>
Expand Down

0 comments on commit 9f7406f

Please sign in to comment.