Skip to content

Commit

Permalink
Fixing value bindings in our registries component
Browse files Browse the repository at this point in the history
  • Loading branch information
codyrancher committed Aug 17, 2024
1 parent 331bf34 commit 75daa9b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
class="mb-20"
:label="t('cluster.privateRegistry.label')"
data-testid="registries-enable-checkbox"
@input="$emit('custom-registry-changed', $event)"
@update:value="$emit('custom-registry-changed', $event)"
/>
</div>
<div
Expand All @@ -94,7 +94,7 @@ export default {
placeholder-key="catalog.chart.registry.custom.placeholder"
:min-height="30"
data-testid="registry-host-input"
@input="$emit('registry-host-changed', $event)"
@update:value="$emit('registry-host-changed', $event)"
/>
<SelectOrCreateAuthSecret
:value="registrySecret"
Expand Down Expand Up @@ -133,14 +133,14 @@ export default {
:value="value"
class="mt-20"
:mode="mode"
@input="$emit('input', $event)"
@update:value="$emit('input', $event)"
/>
<RegistryConfigs
:value="value"
class="mt-20"
:mode="mode"
:cluster-register-before-hook="registerBeforeHook"
@input="$emit('input', $event)"
@update:value="$emit('input', $event)"
@updateConfigs="$emit('update-configs-changed', $event)"
/>
</AdvancedSection>
Expand Down

0 comments on commit 75daa9b

Please sign in to comment.