Skip to content

Commit

Permalink
refactor: field naming changed [ENPF-136]
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria committed Nov 20, 2023
1 parent 69782c5 commit 0404b58
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/app/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ export default {
statisticTime: 'Recalculation interval',
communications: 'Communication type',
manualDistribution: 'Manual distribution',
timeoutFromTheLastMessage: 'Timeout from the last message',
lastMessageTimeout: 'Timeout from the last message',
processing: {
processing: 'Processing',
enabled: 'Waiting for call result',
Expand Down
2 changes: 1 addition & 1 deletion src/app/locale/ru/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ export default {
statisticTime: 'Интервал пересчета',
communications: 'Тип связи',
manualDistribution: 'Ручное распределение',
timeoutFromTheLastMessage: 'Время ожидания от последнего сообщения',
lastMessageTimeout: 'Время ожидания от последнего сообщения',
processing: {
processing: 'Обработка',
enabled: 'Ожидание результата задачи',
Expand Down
2 changes: 1 addition & 1 deletion src/app/locale/ua/ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ export default {
statisticTime: 'Інтервал перерахунку',
communications: 'Тип зв\'язку',
manualDistribution: 'Ручне розподілення',
timeoutFromTheLastMessage: 'Час очікування від останнього повідомлення',
lastMessageTimeout: 'Час очікування від останнього повідомлення',
processing: {
processing: 'Обробка',
enabled: 'Очікування результату задачі',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,11 @@
@change="setItemPayloadProp({ prop: 'manualDistribution', value: $event })"
></wt-switcher>
<wt-switcher
v-if="specificControls.timeoutFromTheLastMessage"
v-if="specificControls.lastMessageTimeout"
:disabled="disableUserInput"
:label="$t('objects.ccenter.queues.timeoutFromTheLastMessage')"
:value="itemInstance.payload.timeoutFromTheLastMessage"
@change="setItemPayloadProp({ prop: 'timeoutFromTheLastMessage', value: $event })"
:label="$t('objects.ccenter.queues.lastMessageTimeout')"
:value="itemInstance.payload.lastMessageTimeout"
@change="setItemPayloadProp({ prop: 'lastMessageTimeout', value: $event })"
></wt-switcher>
</div>
</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const QueueTypeProperties = Object.freeze({
'stickyAgentSec',
'minOnlineAgents',
'manualDistribution',
'timeoutFromTheLastMessage',
'lastMessageTimeout',

// processing specific
'taskProcessing.enabled',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const chatInboundQueue = () => ({
maxWaitingSize: 0,
minOnlineAgents: 0,
manualDistribution: false,
timeoutFromTheLastMessage: false,
lastMessageTimeout: false,
},
});

Expand Down

0 comments on commit 0404b58

Please sign in to comment.