Skip to content

Commit

Permalink
chore: rename component file
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiyad committed Oct 19, 2023
1 parent c746fd5 commit 1b791bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TicketSidebarHeader title="Actions & Tags" />
<span class="space-y-4 p-5">
<div class="space-y-2">
<div class="text-lg font-medium">Actions</div>
<div class="text-base font-medium">Actions</div>
<div class="flex flex-wrap gap-2 overflow-auto">
<span v-if="!actions.data" class="text-base">Nothing to show</span>
<Button
Expand All @@ -24,7 +24,7 @@
</div>
</div>
<div class="space-y-2">
<div class="text-lg font-medium">Tags</div>
<div class="text-base font-medium">Tags</div>
<div class="flex flex-wrap gap-2 overflow-auto">
<Button
v-for="tag in ticket.data.tags"
Expand Down
4 changes: 2 additions & 2 deletions desk/src/pages/ticket/TicketAgentSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import { ref } from "vue";
import { Tooltip } from "frappe-ui";
import { TabGroup, TabList, Tab, TabPanels, TabPanel } from "@headlessui/vue";
import TicketActions from "./TicketActions.vue";
import TicketActionsTags from "./TicketActionsTags.vue";
import TicketContact from "./TicketContact.vue";
import TicketDetails from "./TicketDetails.vue";
import TicketHistory from "./TicketHistory.vue";
Expand All @@ -66,7 +66,7 @@ const items = [
},
{
name: "Actions & Tags",
component: TicketActions,
component: TicketActionsTags,
icon: LucidePointer,
},
{
Expand Down

0 comments on commit 1b791bf

Please sign in to comment.