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
(cherry picked from commit 397d6bdbea)
(cherry picked from commit 6316a0ad87)
mr13.5.1
Giancarlo Errigo Mattos 2 months ago committed by Giancarlo Mattos
parent 61a4690533
commit f29bacd26e

@ -255,7 +255,7 @@
"Id": "ID", "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 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 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", "Ignore Members Call Forwards when Hunting": "Anrufweiterleitungen von Gruppenmitgliedern beim Suchen ignorieren",
"In": "In", "In": "In",
"In call with": "Im Gespräch mit", "In call with": "Im Gespräch mit",

@ -98,8 +98,17 @@
</td> </td>
</template> </template>
<template #body-cell-menu="{ row }"> <template #body-cell-menu="{ row }">
<td> <td class="table-td-action-cont">
<div class="q-gutter-x-sm"> <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-more-menu>
<csc-popup-menu-item <csc-popup-menu-item
icon="fas fa-pen" icon="fas fa-pen"
@ -118,15 +127,6 @@
@click="deleteRow(row.id)" @click="deleteRow(row.id)"
/> />
</csc-more-menu> </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> </div>
</td> </td>
</template> </template>
@ -202,9 +202,8 @@ export default {
{ {
name: 'menu', name: 'menu',
required: true, required: true,
align: 'left', align: 'right',
label: '', label: ''
sortable: true
} }
] ]
}, },
@ -316,3 +315,8 @@ export default {
} }
} }
</script> </script>
<style lang="sass" rel="stylesheet/sass" scoped>
.table-td-action-cont
min-width: 170px
</style>

Loading…
Cancel
Save