case 4576 addition of up to 25 level v7

This commit is contained in:
2024-03-21 15:06:45 +00:00
parent fc10596037
commit 2f4cabcc48
3 changed files with 9 additions and 4 deletions

View File

@@ -131,7 +131,7 @@
</v-list>
</v-menu>
<span v-else class="text-h6">
{{ $sock.t("SubscriptoinItemList") }}</span
{{ $sock.t("SubscriptionItemList") }}</span
>
</v-col>
</template>
@@ -1078,6 +1078,7 @@ async function clickHandler(menuItem) {
// { id: 7, name: "Single ", active: true },
// { id: 9, name: "Up to 10 ", active: true },
// { id: 17, name: "Up to 15 ", active: true },
// id 25 = up to 25
// { id: 12, name: "Up to 20 ", active: true },
// { id: 2, name: "Up to 5 ", active: true },
// { id: 20, name: "Up to 999 ", active: true },
@@ -1224,6 +1225,10 @@ async function clickHandler(menuItem) {
l.users = 1;
l.maintenanceExpire = z.expireDate;
break;
case 25: //Up to 25 //case 4576
l.users = 25;
l.maintenanceExpire = z.expireDate;
break;
case 20: //Up to 999
l.users = 999;
l.maintenanceExpire = z.expireDate;