File tree Expand file tree Collapse file tree 1 file changed +10
-32
lines changed
desk/src/components/Settings/General/components Expand file tree Collapse file tree 1 file changed +10
-32
lines changed Original file line number Diff line number Diff line change 3535 class =" grid grid-cols-2 gap-4 mt-3"
3636 v-if =" settingsData.restrictTicketsByAgentGroup"
3737 >
38- <div class =" flex items-start sm:items-center gap-2" >
39- <div class =" inline-flex space-x-2 rounded transition" >
40- <input
41- class =" rounded-sm mt-[1px] bg-surface-white border-outline-gray-4 text-ink-gray-9 hover:border-outline-gray-5 focus:ring-offset-0 focus:border-outline-gray-8 active:border-outline-gray-6 transition hover:shadow-sm focus:ring-0 focus-visible:ring-2 focus-visible:ring-outline-gray-3 active:bg-surface-gray-2 w-3.5 h-3.5"
42- type =" checkbox"
43- id =" doNotRestrictTicketsWithoutAnAgentGroup"
44- v-model =" settingsData.doNotRestrictTicketsWithoutAnAgentGroup"
45- />
46- <label
47- class =" block text-sm font-medium text-ink-gray-8 select-none"
48- for =" doNotRestrictTicketsWithoutAnAgentGroup"
49- >
50- {{ __("Do not restrict tickets without a team") }}
51- </label >
52- </div >
53- </div >
54- <div class =" flex items-start sm:items-center gap-2" >
55- <div class =" inline-flex space-x-2 rounded transition" >
56- <input
57- class =" rounded-sm mt-[1px] bg-surface-white border-outline-gray-4 text-ink-gray-9 hover:border-outline-gray-5 focus:ring-offset-0 focus:border-outline-gray-8 active:border-outline-gray-6 transition hover:shadow-sm focus:ring-0 focus-visible:ring-2 focus-visible:ring-outline-gray-3 active:bg-surface-gray-2 w-3.5 h-3.5"
58- type =" checkbox"
59- id =" assignWithinTeam"
60- v-model =" settingsData.assignWithinTeam"
61- />
62- <label
63- class =" block text-sm font-medium text-ink-gray-8 select-none"
64- for =" assignWithinTeam"
65- >
66- {{ __("Restrict agent assignment to selected team") }}
67- </label >
68- </div >
69- </div >
38+ <Checkbox
39+ size =" sm"
40+ v-model =" settingsData.doNotRestrictTicketsWithoutAnAgentGroup"
41+ :label =" __('Do not restrict tickets without a team')"
42+ />
43+ <Checkbox
44+ size =" sm"
45+ v-model =" settingsData.assignWithinTeam"
46+ :label =" __('Restrict agent assignment to selected team')"
47+ />
7048 </div >
7149 </div >
7250 <div class =" flex items-center justify-between" >
You can’t perform that action at this time.
0 commit comments