Skip to content

Commit 09256cf

Browse files
signature updated
1 parent 93ae1a4 commit 09256cf

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

desk/src/components/EmailEditor.vue

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,9 @@
7575
class="prose !max-w-full mx-6 md:mx-10 my-2 border-l-4 border-gray-300 pl-4 text-sm focus:outline-none"
7676
@input="onQuotedInput"
7777
/>
78-
<!-- Signature — read-only, always at the bottom -->
7978
<div
8079
v-if="agentSignature.data?.signature"
81-
class="mx-6 md:mx-10 mt-2 pt-2 border-t border-gray-200"
80+
class="mx-6 md:mx-10 mt-2 pt-2"
8281
>
8382
<div
8483
class="prose-sm text-ink-gray-6 text-sm pointer-events-none select-none opacity-70"
@@ -87,7 +86,6 @@
8786
</div>
8887
</div>
8988
</template>
90-
9189
<template #bottom>
9290
<!-- Attachments -->
9391
<div class="flex flex-wrap gap-2 px-10">
@@ -340,7 +338,7 @@ const sendMail = createResource({
340338
to: toEmailsClone.value.join(","),
341339
cc: ccEmailsClone.value?.join(","),
342340
bcc: bccEmailsClone.value?.join(","),
343-
// Append signature to the actual sent message
341+
// Append signature
344342
message:
345343
newEmail.value +
346344
(quotedContentRef.value
@@ -424,7 +422,7 @@ function addToReply(
424422
bccEmailsClone.value = bccEmails;
425423
426424
if (body !== quotedContent.value) {
427-
//trigger change for watch when replied to body data is different from current quoted content
425+
//trigger change for watch when replied to body data is different from current quoted content
428426
quotedContent.value = null;
429427
nextTick(() => {
430428
quotedContent.value = body;
@@ -454,7 +452,8 @@ function handleDiscard() {
454452
455453
emit("discard");
456454
}
457-
//on load set quoted content from storage
455+
456+
//on load set quoted content from storage
458457
onMounted(() => {
459458
if (quotedContent.value) {
460459
nextTick(() => {

desk/src/components/Settings/Profile/Profile.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@
163163
class="w-40"
164164
/>
165165
</div>
166-
167-
<!-- Availability Status -->
168166
<div class="flex items-center justify-between mt-6">
169167
<div class="flex flex-col gap-1">
170168
<span class="text-base font-medium text-ink-gray-8">
@@ -182,8 +180,6 @@
182180
class="w-40"
183181
/>
184182
</div>
185-
186-
<!-- Signature -->
187183
<div class="flex flex-col gap-2 mt-6">
188184
<div class="flex flex-col gap-1">
189185
<span class="text-base font-medium text-ink-gray-8">

desk/src/stores/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export const useAuthStore = defineStore("auth", () => {
9292
username,
9393
timezone,
9494
userTeams,
95-
language,
95+
language,
9696
user,
9797
logout,
9898
};
99-
});
99+
});

helpdesk/api/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ def get_user():
5151
"username": username,
5252
"time_zone": user.time_zone,
5353
"user_teams": user_team_names,
54-
"language": language,
55-
}
54+
"language": language,
55+
}

0 commit comments

Comments
 (0)