|
|
|
@ -66,6 +66,9 @@
|
|
|
|
|
</q-item>
|
|
|
|
|
</q-list>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
v-if="hasSubscriberProfileAttribute(blockList)"
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
class="row justify-center q-mb-lg"
|
|
|
|
|
>
|
|
|
|
@ -111,6 +114,7 @@
|
|
|
|
|
>
|
|
|
|
|
{{ $t('No numbers found') }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</csc-page>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -135,6 +139,10 @@ export default {
|
|
|
|
|
pageName: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: 'incoming'
|
|
|
|
|
},
|
|
|
|
|
blockList: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: null
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data () {
|
|
|
|
@ -160,6 +168,9 @@ export default {
|
|
|
|
|
'isAnonymousBlocked',
|
|
|
|
|
'isAnonymousBlockRequesting'
|
|
|
|
|
]),
|
|
|
|
|
...mapGetters('user', [
|
|
|
|
|
'hasSubscriberProfileAttribute'
|
|
|
|
|
]),
|
|
|
|
|
toggleButtonLabel () {
|
|
|
|
|
if (!this.enabled) {
|
|
|
|
|
return this.getTranslation('toggleEnableLabel')
|
|
|
|
|