diff --git a/src/App.vue b/src/App.vue
index 9227804..338a888 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -93,7 +93,7 @@
>
- {{$vuetify.icons.tag}}
+ {{$vuetify.icons.tag}}
{{ isCrafter(data.item) ? data.item.name : data.item.value }}
@@ -102,10 +102,13 @@
- {{$vuetify.icons.package}}
+ {{$vuetify.icons.package}}
-
+
+ package:
+
+
@@ -114,17 +117,19 @@
-
+
-
- {{
+ {{
isCrafter(data.item)
? `@`
: `#`
- }}
-
+ }}
@@ -420,10 +425,6 @@ a {
transform: none;
}
- .v-chip &,
- .v-avatar & {
- opacity: 0.8;
- }
}
code,
@@ -563,10 +564,6 @@ code.hljs {
}
}
-.search--key {
- margin-right: -3px;
-}
-
.v-text-field {
&__suffix {
border: 1px solid;
diff --git a/types/Package.ts b/types/Package.ts
index 4711902..33d1c0f 100644
--- a/types/Package.ts
+++ b/types/Package.ts
@@ -124,7 +124,8 @@ export default class Package extends Searchable implements PackageMetaDataDTO {
public getSearchItemText(): string[] {
return [
- this.name || '',
+ this.name,
+ `package:${this.name}`,
this.description || '',
this.author ? this.author.toString() : '',
]