Skip to content

Commit e1c238b

Browse files
committed
fix: minor inconsistencies
1 parent 1fee277 commit e1c238b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

Diff for: config/billing.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
'quotas' => [
1616
'nodes' => ['limit' => 1, 'soft' => false, 'reset_period' => null],
1717
'swarms' => ['limit' => 1, 'soft' => false, 'reset_period' => null],
18-
'services' => ['limit' => 20, 'soft' => true, 'reset_period' => null],
19-
'deployments' => ['limit' => 100, 'soft' => true, 'reset_period' => 'daily'],
18+
'services' => ['limit' => 10, 'soft' => true, 'reset_period' => null],
19+
'deployments' => ['limit' => 20, 'soft' => true, 'reset_period' => 'daily'],
2020
],
2121
],
2222
[
@@ -30,7 +30,7 @@
3030
'nodes' => ['limit' => 5, 'soft' => true, 'reset_period' => null],
3131
'swarms' => ['limit' => 1, 'soft' => false, 'reset_period' => null],
3232
'services' => ['limit' => 10, 'soft' => true, 'reset_period' => null],
33-
'deployments' => ['limit' => 100, 'soft' => true, 'reset_period' => 'daily'],
33+
'deployments' => ['limit' => 20, 'soft' => true, 'reset_period' => 'daily'],
3434
],
3535
],
3636
],

Diff for: resources/js/Pages/Nodes/Partials/DockerRegistries.vue

+6-1
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,13 @@ const submitForm = async () => {
146146

147147
<TextInput
148148
v-model="registry.username"
149+
type="password"
149150
class="w-full"
150-
placeholder="glpat-*******"
151+
:placeholder="
152+
registry.dockerName
153+
? 'keep username'
154+
: 'glpat-*******'
155+
"
151156
/>
152157
</FormField>
153158

Diff for: resources/js/Pages/Nodes/Partials/S3Storages.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,9 @@ const submitForm = async () => {
167167
v-model="item.secretKey"
168168
type="password"
169169
class="w-full"
170-
placeholder="**********"
170+
:placeholder="
171+
item.dockerName ? 'keep secret key' : '**********'
172+
"
171173
/>
172174
</FormField>
173175
</ComponentBlock>

0 commit comments

Comments
 (0)