chore: lint auto fixes

This commit is contained in:
Zack Spear
2023-10-30 11:45:41 -07:00
committed by Zack Spear
parent ca93ac7143
commit caab570be6
38 changed files with 362 additions and 304 deletions

View File

@@ -271,7 +271,9 @@ const { copy, copied, isSupported } = useClipboard({ source: keyUrl.value });
:error="true"
:text="t('Post Install License Key Error')"
>
<h4 class="text-18px text-left font-semibold">{{ t(stateData.heading) }}</h4>
<h4 class="text-18px text-left font-semibold">
{{ t(stateData.heading) }}
</h4>
<div class="text-left text-16px" v-html="t(stateData.message)" />
</UpcCallbackFeedbackStatus>

View File

@@ -43,12 +43,14 @@ const filteredKeyActions = computed(() => keyActions.value?.filter(action => !['
const links = computed(():UserProfileLink[] => {
return [
...(regUpdatesExpired.value ? [{
href: WEBGUI_TOOLS_REGISTRATION.toString(),
icon: KeyIcon,
text: props.t('OS Update Eligibility Expired'),
title: props.t('Go to Tools > Registration to Learn More'),
}] : []),
...(regUpdatesExpired.value
? [{
href: WEBGUI_TOOLS_REGISTRATION.toString(),
icon: KeyIcon,
text: props.t('OS Update Eligibility Expired'),
title: props.t('Go to Tools > Registration to Learn More'),
}]
: []),
// callback to account.unraid.net/server/update-os
updateOsActionsStore.initUpdateOsCallback(),
// connect plugin links

View File

@@ -23,8 +23,8 @@ const time = computed(() => {
return expireTime.value;
}
return (state.value === 'TRIAL' || state.value === 'EEXPIRED') && expireTime.value && expireTime.value > 0
? expireTime.value
: uptime.value;
? expireTime.value
: uptime.value;
});
const countUp = computed<boolean>(() => {