Skip to content

Commit 1da703f

Browse files
authored
fix: solve merge conflicts
1 parent 2abb2e1 commit 1da703f

File tree

7 files changed

+0
-100
lines changed

7 files changed

+0
-100
lines changed

desk/src/components/Settings/Telephony/Telephony.vue

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -38,60 +38,6 @@
3838
<div class="flex-1 flex flex-col">
3939
<!-- General -->
4040
<div
41-
<<<<<<< HEAD
42-
class="flex flex-col gap-1.5"
43-
v-if="telephonyAgent.doc && twilio.doc.enabled"
44-
>
45-
<FormControl
46-
label="Twilio number"
47-
type="text"
48-
required
49-
v-model="telephonyAgent.doc.twilio_number"
50-
/>
51-
<ErrorMessage :message="twilioErrors.number" />
52-
</div>
53-
<div
54-
class="flex flex-col gap-1.5"
55-
v-if="telephonyAgent.doc && exotel.doc.enabled"
56-
>
57-
<FormControl
58-
label="Exotel number"
59-
type="text"
60-
required
61-
v-model="telephonyAgent.doc.exotel_number"
62-
/>
63-
<ErrorMessage :message="exotelErrors.number" />
64-
</div>
65-
<div
66-
class="flex flex-col gap-1.5"
67-
v-if="telephonyAgent.doc && exotel.doc.enabled"
68-
>
69-
<FormControl
70-
:label="__('Personal mobile no')"
71-
type="text"
72-
required
73-
v-model="telephonyAgent.doc.mobile_no"
74-
:description="__('Required for exotel integration')"
75-
/>
76-
<ErrorMessage :message="exotelErrors.mobileNo" />
77-
</div>
78-
</div>
79-
<div class="mt-6" v-if="twilio?.doc">
80-
<div class="text-base font-semibold text-ink-gray-8">Twilio</div>
81-
<div class="mt-4">
82-
<div class="grid grid-cols-2 gap-4">
83-
<Checkbox
84-
:label="__('Enabled')"
85-
v-model="twilio.doc.enabled"
86-
@update:modelValue="twilio.doc.enabled = $event ? 1 : 0"
87-
/>
88-
<Checkbox
89-
:label="__('Record Calls')"
90-
v-model="twilio.doc.record_calls"
91-
v-if="twilio.doc.enabled"
92-
@update:modelValue="twilio.doc.record_calls = $event ? 1 : 0"
93-
/>
94-
=======
9541
class="flex items-center justify-between gap-8 py-3 hover:bg-gray-50 rounded px-2"
9642
>
9743
<div class="flex flex-col">
@@ -101,7 +47,6 @@
10147
<div class="text-p-sm text-ink-gray-5">
10248
{{ __("Default calling medium for logged in user") }}
10349
</div>
104-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
10550
</div>
10651
<div class="flex items-center gap-2">
10752
<!-- <Select

desk/src/components/layouts/layoutSettings.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { __ } from "@/translation";
88

99
export const agentPortalSidebarOptions = [
1010
{
11-
<<<<<<< HEAD
12-
=======
1311
label: __("Home"),
1412
icon: LucideHome,
1513
to: "Home",
@@ -20,7 +18,6 @@ export const agentPortalSidebarOptions = [
2018
to: "Dashboard"
2119
},
2220
{
23-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
2421
label: __("Tickets"),
2522
icon: LucideTicket,
2623
to: "TicketsAgent",

desk/src/components/view-controls/QuickFilters.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<template>
22
<FadedScrollableDiv
3-
<<<<<<< HEAD
43
class="quick-filters flex flex-1 items-center -ml-1 overflow-x-auto py-1 gap-2 pr-4"
5-
=======
6-
class="flex flex-1 items-center -ml-1 overflow-x-scroll py-1 gap-2"
7-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
84
orientation="horizontal"
95
v-if="!quickFilters.loading"
106
>

desk/src/pages/dashboard/Dashboard.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,11 @@ import {
211211
} from "frappe-ui";
212212
const { isMobileView } = useScreenSize();
213213
import { computed, h, onMounted, reactive, ref, watch } from "vue";
214-
<<<<<<< HEAD
215-
=======
216214
import { __ } from "@/translation";
217215
import LucideBuilding2 from "~icons/lucide/building-2";
218216
import LucideUser from "~icons/lucide/user";
219217
import { useScreenSize } from "@/composables/screen";
220218
import { useStorage } from "@vueuse/core";
221-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
222219
223220
interface NumberCardData {
224221
title: string;

desk/src/pages/ticket/TicketAgent.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,8 @@ import { createResource, toast, usePageMeta } from "frappe-ui";
7070
import { computed, onBeforeUnmount, onMounted, provide, ref, watch } from "vue";
7171
import { useRoute } from "vue-router";
7272
import { showCommentBox, showEmailBox } from "./modalStates";
73-
<<<<<<< HEAD
74-
=======
7573
import TicketIcon from "@/components/icons/TicketIcon.vue";
7674
77-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
7875
const telephonyStore = useTelephonyStore();
7976
8077
const { $socket } = globalStore();

desk/src/pages/ticket/Tickets.vue

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -412,26 +412,6 @@ const viewActions = (view) => {
412412
class: "h-4 w-4",
413413
}),
414414
onClick: () => {
415-
<<<<<<< HEAD
416-
const newView = {
417-
name: _view.name,
418-
public: !_view.public,
419-
};
420-
421-
if (_view.public) {
422-
$dialog({
423-
title: __("Make {0} private?", [_view.label]),
424-
message: __(
425-
"This view is currently public. Changing it to private will hide it for all the users."
426-
),
427-
actions: [
428-
{
429-
label: __("Confirm"),
430-
variant: "solid",
431-
onClick({ close }) {
432-
close();
433-
updateView(newView);
434-
=======
435415
toggleViewVisibility(
436416
_view,
437417
__("Hide view from sidebar"),
@@ -511,7 +491,6 @@ const viewActions = (view) => {
511491
handleSuccess(__("deleted"));
512492
close();
513493
},
514-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
515494
},
516495
},
517496
],

package.json

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,8 @@
33
"scripts": {
44
"postinstall": "cd desk && yarn install",
55
"dev": "cd desk && yarn dev",
6-
<<<<<<< HEAD
76
"build": "cd desk && yarn build"
87
},
9-
=======
10-
"build": "cd desk && yarn build",
11-
"disable-workspaces": "sed -i '' 's/\"workspaces\"/\"aworkspaces\"/g' package.json",
12-
"enable-workspaces": "sed -i '' 's/\"aworkspaces\"/\"workspaces\"/g' package.json && rm -rf node_modules ./desk/node_modules/ frappe-ui/node_modules/ && yarn install"
13-
},
14-
"workspaces": [
15-
"desk",
16-
"frappe-ui"
17-
],
18-
>>>>>>> 15b246e3 (Merge pull request #2969 from aerodeval/fix/-fix-ui-inconsistency)
198
"resolutions": {
209
"cheerio": "1.0.0-rc.12",
2110
"prosemirror-model": "1.25.4"

0 commit comments

Comments
 (0)