Skip to content

Commit

Permalink
fix(styles): article heading
Browse files Browse the repository at this point in the history
  • Loading branch information
RitvikSardana committed Dec 19, 2024
1 parent 747adf2 commit f46a733
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</div>
</div>
<div class="border-b pb-3">
<div class="text-3xl font-semibold text-gray-900">
<div class="text-2xl font-semibold text-gray-900">
{{ title }}
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</div>
</div>
<div class="border-b pb-3">
<div class="text-3xl font-semibold text-gray-900">
<div class="text-2xl font-semibold text-gray-900">
{{ title }}
</div>
</div>
Expand Down
9 changes: 9 additions & 0 deletions desk/src/pages/ticket/TicketTextEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@
private: true,
}"
@success="(f: File) => $emit('update:attachments', [...attachments, f])"
@failure="
() =>
createToast({
title: 'Error Uploading File',
icon: 'x',
iconClasses: 'text-red-600',
})
"
>
<template #default="{ openFileSelector }">
<Button theme="gray" variant="ghost" @click="openFileSelector()">
Expand Down Expand Up @@ -85,6 +93,7 @@ import {
UserAvatar,
} from "@/components";
import { File } from "@/types";
import { createToast } from "@/utils";
interface P {
content: string;
Expand Down

0 comments on commit f46a733

Please sign in to comment.