-
Notifications
You must be signed in to change notification settings - Fork 604
feat: add profile, general settings module & search bars for lists #2664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
| <div class="relative"> | ||
| <Input | ||
| v-model="assignmentRuleSearchQuery" | ||
| @input="assignmentRuleSearchQuery = $event" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is @input needed when we have v-model?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@input is required because Input component updates model value on blur, changed v-model to :model-value
| <script setup lang="ts"> | ||
| import AddNewAgentsDialog from "@/components/desk/global/AddNewAgentsDialog.vue"; | ||
| import { assignmentRuleData } from "@/stores/assignmentRules"; | ||
| import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we skip using headless?
any other way to achieve this?
This PR introduces the Profile and General Settings module in the settings modal, enhancing user customization and application management capabilities. Additionally, it adds search functionality to all list views, enabling users to search and locate items quickly.
Highlights
Changelog
2025-10-10.18-30-09.mp4
Fixes #2486