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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@
<strong>{{ compatible_version_archs.join(', ') }}</strong>
</div>
</div>
<v-btn
v-if="extension.website"
v-tooltip="'Homepage'"
icon
:href="extension.website"
target="_blank"
rel="noopener"
>
<v-icon small>
mdi-web
</v-icon>
</v-btn>
</v-card-subtitle>
<div class="px-4 pt-4 d-flex justify-space-between align-start">
<v-select
Expand Down
1 change: 1 addition & 0 deletions core/frontend/src/types/kraken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export interface ExtensionData {
extension_logo?: string
company_logo: string
is_compatible?: boolean
website?: string
repo_info?: {
downloads: number,
last_updated?: string,
Expand Down
Loading