Skip to content

Commit

Permalink
Merge pull request #2033 from RitvikSardana/ui-changes
Browse files Browse the repository at this point in the history
fix(ui): minor UI changes
  • Loading branch information
RitvikSardana authored Nov 7, 2024
2 parents f633ff4 + 3ae3cd3 commit d810e34
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
1 change: 0 additions & 1 deletion desk/src/components/ViewControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
</div>
</FadedScrollableDiv>
<div class="grow"></div>
<div class="-ml-2 h-[70%] border-l" />

<div class="flex items-center gap-2">
<Button :label="'Refresh'" @click="emit('event:reload')">
Expand Down
2 changes: 1 addition & 1 deletion desk/src/components/layouts/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="mb-4" v-if="!isCustomerPortal">
<div
v-if="notificationStore.unread"
class="absolute z-20 h-1.5 w-1.5 translate-x-6 translate-y-1 rounded-full bg-blue-400"
class="absolute z-20 h-1.5 w-1.5 translate-x-6 translate-y-1 rounded-full bg-blue-400 left-1"
theme="gray"
variant="solid"
/>
Expand Down
17 changes: 11 additions & 6 deletions desk/src/pages/TicketNew.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,17 @@
</div>
<!-- existing fields -->
<div class="flex flex-col" :class="subject.length >= 2 && 'gap-5'">
<FormControl
v-model="subject"
type="text"
label="Subject*"
placeholder="A short description"
/>
<div class="flex flex-col gap-2">
<span class="block text-sm text-gray-700">
Subject
<span class="place-self-center text-red-500"> * </span>
</span>
<FormControl
v-model="subject"
type="text"
placeholder="A short description"
/>
</div>
<TicketNewArticles v-if="isCustomerPortal" :search="subject" />
<div v-if="isCustomerPortal">
<h4
Expand Down

0 comments on commit d810e34

Please sign in to comment.