Skip to content

Commit 56e16c0

Browse files
committed
feat(web): update claude code 6
1 parent 190253b commit 56e16c0

File tree

9 files changed

+24
-36
lines changed

9 files changed

+24
-36
lines changed

web/src/App.vue

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,12 @@
153153
v-if="$route.path.startsWith('/project/')"
154154
>
155155
<v-menu bottom max-width="235" max-height="100%" v-if="project">
156-
<template v-slot:activator="{ on, attrs }">
156+
<template v-slot:activator="{ props }">
157157
<v-list class="pa-0 overflow-y-auto">
158158
<v-list-item
159159
key="project"
160160
class="app__project-selector"
161-
v-bind="attrs"
162-
v-on="on"
161+
v-bind="props"
163162
data-testid="sidebar-currentProject"
164163
>
165164
<template v-slot:prepend>
@@ -366,11 +365,10 @@
366365
:position-x="50"
367366
absolute
368367
>
369-
<template v-slot:activator="{on, attrs}">
368+
<template v-slot:activator="{ props }">
370369
<v-btn
371370
icon
372-
v-bind="attrs"
373-
v-on="on"
371+
v-bind="props"
374372
>
375373
<img
376374
style="border-radius: 30px; max-width: 100%;"
@@ -402,11 +400,10 @@
402400
</v-list-item>
403401

404402
<v-menu top max-width="235" nudge-top="12">
405-
<template v-slot:activator="{ on, attrs }">
403+
<template v-slot:activator="{ props }">
406404
<v-list-item
407405
key="project"
408-
v-bind="attrs"
409-
v-on="on"
406+
v-bind="props"
410407
prepend-icon="mdi-account"
411408
>
412409
<v-list-item-title>

web/src/components/EnvironmentForm.vue

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,10 @@
6262
{{ $t('extraVariables') }}
6363

6464
<v-tooltip v-if="needHelp" bottom color="black" open-delay="300" max-width="400">
65-
<template v-slot:activator="{ on, attrs }">
65+
<template v-slot:activator="{ props }">
6666
<v-icon
6767
class="ml-1"
68-
v-bind="attrs"
69-
v-on="on"
68+
v-bind="props"
7069
>mdi-help-box
7170
</v-icon>
7271
</template>
@@ -244,11 +243,10 @@
244243
{{ $t('extraVariables') }}
245244

246245
<v-tooltip v-if="needHelp" bottom color="black" open-delay="300" max-width="400">
247-
<template v-slot:activator="{ on, attrs }">
246+
<template v-slot:activator="{ props }">
248247
<v-icon
249248
class="ml-1"
250-
v-bind="attrs"
251-
v-on="on"
249+
v-bind="props"
252250
>mdi-help-box
253251
</v-icon>
254252
</template>

web/src/components/RepositoryForm.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,9 @@
8383
>
8484
<template v-slot:append-outer>
8585
<v-tooltip left color="black" content-class="opacity1">
86-
<template v-slot:activator="{ on, attrs }">
86+
<template v-slot:activator="{ props }">
8787
<v-icon
88-
v-bind="attrs"
89-
v-on="on"
88+
v-bind="props"
9089
>
9190
mdi-help-circle
9291
</v-icon>

web/src/components/TaskLink.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
transition="fade-transition"
1919
:disabled="!tooltip"
2020
>
21-
<template v-slot:activator="{ on, attrs }">
21+
<template v-slot:activator="{ props }">
2222
<a
23-
v-bind="attrs"
24-
v-on="on"
23+
v-bind="props"
2524
@click="showTaskLog()"
2625
:class="{'task-link-with-tooltip': tooltip}"
2726
>

web/src/views/Runners.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,10 +324,9 @@
324324
</v-btn>
325325

326326
<v-tooltip bottom :max-width="150">
327-
<template v-slot:activator="{ on, attrs }">
327+
<template v-slot:activator="{ props }">
328328
<v-btn
329-
v-bind="attrs"
330-
v-on="on"
329+
v-bind="props"
331330
icon
332331
class="mr-1"
333332
@click="clearCache(item)"

web/src/views/project/Inventory.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,10 @@
6565
<v-menu
6666
offset-y
6767
>
68-
<template v-slot:activator="{ on, attrs }">
68+
<template v-slot:activator="{ props }">
6969
<v-btn
7070
class="pr-2"
71-
v-bind="attrs"
72-
v-on="on"
71+
v-bind="props"
7372
color="primary"
7473
v-if="can(USER_PERMISSIONS.manageProjectResources)"
7574
>{{ $t('newInventory') }}

web/src/views/project/SecretStorages.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@
4444
offset-y
4545
v-if="premiumFeatures.secret_storage_management"
4646
>
47-
<template v-slot:activator="{ on, attrs }">
47+
<template v-slot:activator="{ props }">
4848

4949
<v-btn
5050
class="pr-2"
51-
v-bind="attrs"
52-
v-on="on"
51+
v-bind="props"
5352
color="primary"
5453
v-if="can(USER_PERMISSIONS.manageProjectResources)"
5554
>

web/src/views/project/Templates.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@
5454
<v-menu
5555
offset-y
5656
>
57-
<template v-slot:activator="{ on, attrs }">
57+
<template v-slot:activator="{ props }">
5858
<v-btn
59-
v-bind="attrs"
60-
v-on="on"
59+
v-bind="props"
6160
color="primary"
6261
class="mr-1 pr-2"
6362
v-if="can(USER_PERMISSIONS.manageProjectResources)"

web/src/views/project/template/TemplateTerraformState.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,14 @@
105105
<span v-else>No workspaces.</span>
106106

107107
<v-menu offset-y>
108-
<template v-slot:activator="{ on, attrs }">
108+
<template v-slot:activator="{ props }">
109109
<v-btn
110110
color="primary"
111111
dark
112112
fab
113113
small
114114
class="ml-3"
115-
v-bind="attrs"
116-
v-on="on"
115+
v-bind="props"
117116
>
118117
<v-icon dark>mdi-plus</v-icon>
119118
</v-btn>

0 commit comments

Comments
 (0)