Skip to content

Commit

Permalink
fix: minor inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdan-shulha committed Sep 24, 2024
1 parent 1fee277 commit e1c238b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions config/billing.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
'quotas' => [
'nodes' => ['limit' => 1, 'soft' => false, 'reset_period' => null],
'swarms' => ['limit' => 1, 'soft' => false, 'reset_period' => null],
'services' => ['limit' => 20, 'soft' => true, 'reset_period' => null],
'deployments' => ['limit' => 100, 'soft' => true, 'reset_period' => 'daily'],
'services' => ['limit' => 10, 'soft' => true, 'reset_period' => null],
'deployments' => ['limit' => 20, 'soft' => true, 'reset_period' => 'daily'],
],
],
[
Expand All @@ -30,7 +30,7 @@
'nodes' => ['limit' => 5, 'soft' => true, 'reset_period' => null],
'swarms' => ['limit' => 1, 'soft' => false, 'reset_period' => null],
'services' => ['limit' => 10, 'soft' => true, 'reset_period' => null],
'deployments' => ['limit' => 100, 'soft' => true, 'reset_period' => 'daily'],
'deployments' => ['limit' => 20, 'soft' => true, 'reset_period' => 'daily'],
],
],
],
Expand Down
7 changes: 6 additions & 1 deletion resources/js/Pages/Nodes/Partials/DockerRegistries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,13 @@ const submitForm = async () => {

<TextInput
v-model="registry.username"
type="password"
class="w-full"
placeholder="glpat-*******"
:placeholder="
registry.dockerName
? 'keep username'
: 'glpat-*******'
"
/>
</FormField>

Expand Down
4 changes: 3 additions & 1 deletion resources/js/Pages/Nodes/Partials/S3Storages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ const submitForm = async () => {
v-model="item.secretKey"
type="password"
class="w-full"
placeholder="**********"
:placeholder="
item.dockerName ? 'keep secret key' : '**********'
"
/>
</FormField>
</ComponentBlock>
Expand Down

0 comments on commit e1c238b

Please sign in to comment.