Skip to content

Commit

Permalink
fix: add important for dropdown classes
Browse files Browse the repository at this point in the history
  • Loading branch information
RitvikSardana committed Oct 30, 2024
1 parent e6745c4 commit aefdf05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions desk/src/stores/ticketStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const useTicketStatusStore = defineStore("ticketStatus", () => {
Closed: "gray",
};
const textColorMap = {
Open: "text-red-600",
Replied: "text-blue-600",
"Awaiting Response": "text-blue-600",
Resolved: "text-green-700",
Closed: "text-gray-700",
Open: "!text-red-600",
Replied: "!text-blue-600",
"Awaiting Response": "!text-blue-600",
Resolved: "!text-green-700",
Closed: "!text-gray-700",
};
const stateActive = ["Open", "Replied"];
const stateInactive = ["Resolved", "Closed"];
Expand Down
2 changes: 1 addition & 1 deletion desk/src/tiptap-extensions.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Extension } from "@tiptap/core";

export const PreserveVideoControls: Extension = Extension.create({
name: "preserveIds",
name: "preserveVideoControls",
addGlobalAttributes() {
return [
{
Expand Down

0 comments on commit aefdf05

Please sign in to comment.