Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@hono/otel": "1.1.2",
"@hono/standard-validator": "0.2.2",
"@hono/standard-validator": "0.2.3",
"@hono/zod-openapi": "1.4.0",
"@jack/schemas": "workspace:*",
"@opentelemetry/api": "1.9.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/app/components/SecretInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ watch([mode, value], () => {
size="sm"
:icon="reveal ? 'i-ph-eye-slash' : 'i-ph-eye'"
:aria-label="reveal ? 'Hide value' : 'Show value'"
@click="reveal = !reveal"
@click="() => { reveal = !reveal }"
/>
</template>
</UInput>
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/app/pages/downloads.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const columns: TableColumn<DownloadItem>[] = [
:color="chip.color"
:variant="filter === chip.key ? 'subtle' : 'ghost'"
size="sm"
@click="filter = chip.key"
@click="() => { filter = chip.key }"
>
{{ chip.label }}
<UBadge :color="chip.color" :variant="filter === chip.key ? 'solid' : 'soft'" size="sm">
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/app/pages/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ async function confirmRevoke() {
</div>
<UBadge v-bind="expiryInfo(key)" variant="subtle" />
<UButton icon="i-ph-pencil-simple" color="neutral" variant="ghost" size="sm" aria-label="Edit key" @click="openEdit(key)" />
<UButton icon="i-ph-trash" color="neutral" variant="ghost" size="sm" aria-label="Revoke key" @click="confirmTarget = key" />
<UButton icon="i-ph-trash" color="neutral" variant="ghost" size="sm" aria-label="Revoke key" @click="() => { confirmTarget = key }" />
</div>
</UCard>
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"vue-router": "^5.1.0"
},
"devDependencies": {
"tailwindcss": "^4.1.13",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.2",
"vue-tsc": "^3.1.1"
"vue-tsc": "^3.3.6"
}
}
22 changes: 15 additions & 7 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.