From a252fe21d8aeff8fe1fc1fed68f03f563ca360c7 Mon Sep 17 00:00:00 2001 From: Carlo Venusino Date: Wed, 13 May 2020 15:31:27 +0200 Subject: [PATCH] TT#81165 CF: Can click a new type of forwarding group under "Add forwarding" Change-Id: I4b03820b39fa940ee2d4543e08a8528812c88172 --- ...NewCallForwardDestinationsetTypeSelect.vue | 30 +++++++++---------- src/locales/en.json | 1 + src/store/new-call-forward.js | 20 +++++++++++++ 3 files changed, 35 insertions(+), 16 deletions(-) diff --git a/src/components/pages/NewCallForward/CscNewCallForwardDestinationsetTypeSelect.vue b/src/components/pages/NewCallForward/CscNewCallForwardDestinationsetTypeSelect.vue index b0020711..8e9260cd 100644 --- a/src/components/pages/NewCallForward/CscNewCallForwardDestinationsetTypeSelect.vue +++ b/src/components/pages/NewCallForward/CscNewCallForwardDestinationsetTypeSelect.vue @@ -9,6 +9,13 @@ > {{ $t('pages.newCallForward.unconditionalLabel') }} +
+ {{ $t('pages.newCallForward.unconditionalFromLabel') }} +
0; }, + timeoutFromGroupExists(state){ + const group = state.forwardGroups.filter(($group)=>{ + return $group.name === 'csc-timeout-from' + }); + return group && group.length > 0; + }, + unconditionalFromGroupExists(state){ + const group = state.forwardGroups.filter(($group)=>{ + return $group.name === 'csc-unconditional-from' + }); + return group && group.length > 0; + }, offlineGroupExists(state){ const group = state.forwardGroups.filter(($group)=>{ return $group.name === 'csc-offline'