diff --git a/web/_data/serverState.ts b/web/_data/serverState.ts index b0ad95dde..a18db03e8 100644 --- a/web/_data/serverState.ts +++ b/web/_data/serverState.ts @@ -29,7 +29,7 @@ const randomGuid = `1111-1111-${makeid(4)}-123412341234`; // this guid is regist // EBLACKLISTED1 // EBLACKLISTED2 // ENOCONN -const state: ServerState = 'ENOCONN'; +const state: ServerState = 'BASIC'; let regTy = ''; switch (state) { // @ts-ignore @@ -72,7 +72,7 @@ export const serverState: Server = { connectPluginInstalled: 'dynamix.unraid.net.staging.plg', // connectPluginInstalled: '', description: 'DevServer9000', - deviceCount: 3, + deviceCount: 12, expireTime, flashProduct: 'SanDisk_3.2Gen1', flashVendor: 'USB', diff --git a/web/components/Registration.ce.vue b/web/components/Registration.ce.vue index 895439a56..b82504a68 100644 --- a/web/components/Registration.ce.vue +++ b/web/components/Registration.ce.vue @@ -132,7 +132,9 @@ const items = computed((): RegistrationItemProps[] => { ...(!stateDataError.value ? [{ error: deviceCount.value > devicesAvailable.value, label: t('Attached Storage Devices'), - text: t('{0} out of {1} devices', [deviceCount.value, devicesAvailable.value > 12 ? t('unlimited') : devicesAvailable.value]), + text: deviceCount.value > devicesAvailable.value + ? t('{0} out of {1} allowed devices – upgrade your key to support more devices', [deviceCount.value, devicesAvailable.value > 12 ? t('unlimited') : devicesAvailable.value]) + : t('{0} out of {1} devices', [deviceCount.value, devicesAvailable.value > 12 ? t('unlimited') : devicesAvailable.value]), }] : []), ...(!stateDataError.value && guid.value ? [{ label: t('Key Replacement Eligibility'), diff --git a/web/components/Registration/Item.vue b/web/components/Registration/Item.vue index 7ca9c0dd4..bf2d596cf 100644 --- a/web/components/Registration/Item.vue +++ b/web/components/Registration/Item.vue @@ -29,7 +29,7 @@ const evenBgColor = computed(() => { {{ label }}