MT#64862 Minor CSC bug fixes

* Fixes missing translation for "If not available"
    in german
  * Call back button on the subscriber phonebook
    was moved before the more menu

Change-Id: I6daa0623173c0251c2c72149419bc8f122687473
master
Giancarlo Errigo Mattos 2 months ago
parent 997392898c
commit 397d6bdbea

@ -263,7 +263,7 @@
"Id": "ID",
"If activated the subscriber will not receive any call. The call forwards will not be taken into account.": "Wenn diese Funktion aktiviert ist, erhält der Teilnehmer keine Anrufe. Die Weiterleitung von Anrufen wird nicht berücksichtigt.",
"If busy": "Wenn besetzt",
"If not available": "Wenn besetzt",
"If not available": "Wenn nicht erreichbar",
"Ignore Members Call Forwards when Hunting": "Anrufweiterleitungen von Gruppenmitgliedern beim Suchen ignorieren",
"In": "In",
"In call with": "Im Gespräch mit",

@ -98,8 +98,17 @@
</td>
</template>
<template #body-cell-menu="{ row }">
<td>
<div class="q-gutter-x-sm">
<td class="table-td-action-cont">
<div class="row items-center justify-between no-wrap full-width">
<q-btn
icon="fas fa-phone-alt"
color="primary"
size="sm"
flat
:label="$t('Call back')"
data-cy="csc-phonebook-entry-callback"
@click="homePageCall(row)"
/>
<csc-more-menu>
<csc-popup-menu-item
icon="fas fa-pen"
@ -118,15 +127,6 @@
@click="deleteRow(row)"
/>
</csc-more-menu>
<q-btn
icon="fas fa-phone-alt"
color="primary"
size="sm"
flat
:label="$t('Call back')"
data-cy="csc-phonebook-entry-callback"
@click="homePageCall(row)"
/>
</div>
</td>
</template>
@ -202,9 +202,8 @@ export default {
{
name: 'menu',
required: true,
align: 'left',
label: '',
sortable: true
align: 'right',
label: ''
}
]
},
@ -319,3 +318,8 @@ export default {
}
}
</script>
<style lang="sass" rel="stylesheet/sass" scoped>
.table-td-action-cont
min-width: 170px
</style>

Loading…
Cancel
Save