diff --git a/website/client/src/components/header/messageCount.functional.vue b/website/client/src/components/header/messageCount.vue similarity index 100% rename from website/client/src/components/header/messageCount.functional.vue rename to website/client/src/components/header/messageCount.vue diff --git a/website/client/src/components/header/notifications/challengeInvitation.functional.vue b/website/client/src/components/header/notifications/challengeInvitation.vue similarity index 100% rename from website/client/src/components/header/notifications/challengeInvitation.functional.vue rename to website/client/src/components/header/notifications/challengeInvitation.vue diff --git a/website/client/src/components/header/notificationsDropdown.vue b/website/client/src/components/header/notificationsDropdown.vue index d0e660c0d2..caafc06c8e 100644 --- a/website/client/src/components/header/notificationsDropdown.vue +++ b/website/client/src/components/header/notificationsDropdown.vue @@ -117,14 +117,14 @@ import * as quests from '@/../../common/script/content/quests'; import { hasCompletedOnboarding } from '@/../../common/script/libs/onboarding'; import notificationsIcon from '@/assets/svg/notifications.svg'; import MenuDropdown from '../ui/customMenuDropdown'; -import MessageCount from './messageCount.functional'; +import MessageCount from './messageCount.vue'; import { CONSTANTS, getLocalSetting, setLocalSetting } from '@/libs/userlocalManager'; import successImage from '@/assets/svg/success.svg'; import starBadge from '@/assets/svg/star-badge.svg'; // Notifications import CARD_RECEIVED from './notifications/cardReceived'; -import CHALLENGE_INVITATION from './notifications/challengeInvitation.functional.vue'; +import CHALLENGE_INVITATION from './notifications/challengeInvitation.vue'; import GIFT_ONE_GET_ONE from './notifications/g1g1'; import GROUP_TASK_ASSIGNED from './notifications/groupTaskAssigned'; import GROUP_TASK_CLAIMED from './notifications/groupTaskClaimed'; diff --git a/website/client/src/components/header/userDropdown.vue b/website/client/src/components/header/userDropdown.vue index 20629daf95..7203cfae88 100644 --- a/website/client/src/components/header/userDropdown.vue +++ b/website/client/src/components/header/userDropdown.vue @@ -141,7 +141,7 @@ import { mapState } from '@/libs/store'; import userIcon from '@/assets/svg/user.svg'; import MenuDropdown from '../ui/customMenuDropdown'; -import MessageCount from './messageCount.functional'; +import MessageCount from './messageCount.vue'; import { EVENTS } from '@/libs/events'; import { PAGES } from '@/libs/consts'; diff --git a/website/client/src/components/inventory/items/index.vue b/website/client/src/components/inventory/items/index.vue index e1df439a36..5c278b176a 100644 --- a/website/client/src/components/inventory/items/index.vue +++ b/website/client/src/components/inventory/items/index.vue @@ -231,7 +231,7 @@
{{ $t('g1g1HowItWorks') }}
- + {{ $t('limitations') }}
{{ $t('g1g1Limitations') }}
@@ -323,6 +318,12 @@ export default {
if (this.userSearchTerm.length < 1) return true;
return typeof this.foundUser._id === 'undefined';
},
+
+ userInputInvalidIssues () {
+ return this.userSearchTerm.length > 0 && this.userNotFound
+ ? [this.$t('userWithUsernameOrUserIdNotFound')]
+ : [''];
+ },
},
watch: {
userSearchTerm: {
diff --git a/website/client/src/components/shops/featuredItemsHeader.vue b/website/client/src/components/shops/featuredItemsHeader.vue
index 4d23ca3dad..416814bec0 100644
--- a/website/client/src/components/shops/featuredItemsHeader.vue
+++ b/website/client/src/components/shops/featuredItemsHeader.vue
@@ -35,7 +35,7 @@
:key="item.key"
:item="item"
:price="item.value"
- :item-content-class="'shop_'+item.key"
+ :item-content-class="`shop_${item.key}`"
:empty-item="false"
:popover-position="'top'"
@click="featuredItemSelected(item)"
diff --git a/website/client/src/components/shops/gemPrice.vue b/website/client/src/components/shops/gemPrice.vue
index 93a29eb515..988aec5ac9 100644
--- a/website/client/src/components/shops/gemPrice.vue
+++ b/website/client/src/components/shops/gemPrice.vue
@@ -1,10 +1,11 @@