MT#55940 Add new speeddial, forward, transfer device buttons

Change-Id: Ie97d97eee70b280fd1483d014af340db2b525033
pull/27/merge
Marco Capetta 2 years ago committed by Hugo Zigha
parent 3f298e008e
commit 64e8ff3d14

@ -223,6 +223,24 @@ export default {
value: 'shared'
})
}
if (this.selectedKey !== null && this.selectedKey.keySet.can_speeddial) {
options.push({
label: this.$t('SpeedDial'),
value: 'speeddial'
})
}
if (this.selectedKey !== null && this.selectedKey.keySet.can_forward) {
options.push({
label: this.$t('Forward'),
value: 'forward'
})
}
if (this.selectedKey !== null && this.selectedKey.keySet.can_transfer) {
options.push({
label: this.$t('Transfer'),
value: 'transfer'
})
}
return options
},
isMobile () {

Loading…
Cancel
Save