mirror of
https://github.com/unraid/api.git
synced 2026-01-06 00:30:22 -06:00
chore: lint auto fixes
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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>(() => {
|
||||
|
||||
Reference in New Issue
Block a user