Refactor_Directory And Project Level Permsssion #404

Merged
pramod.mahajan merged 90 commits from Refactor_Directory into main 2025-09-17 10:24:46 +00:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 9676d45710 - Show all commits

View File

@ -30,7 +30,8 @@ const ContactFilterPanel = ({ onApply, clearFilter }) => {
};
const handleClose = () => {
reset(defaultContactFilter);
reset(defaultContactFilter);
onApply(defaultContactFilter);
closePanel();
};
@ -59,7 +60,7 @@ const ContactFilterPanel = ({ onApply, clearFilter }) => {
<div className="d-flex justify-content-end py-3 gap-2">
<button
type="button"
className="btn btn-secondary btn-xs"
className="btn btn-label-secondary btn-xs"
onClick={handleClose}
>
Clear

View File

@ -31,6 +31,7 @@ const NoteFilterPanel = ({ onApply, clearFilter }) => {
const handleClose = () => {
reset(defaultNotesFilter);
onApply(defaultNotesFilter);
closePanel();
};
@ -59,7 +60,7 @@ const NoteFilterPanel = ({ onApply, clearFilter }) => {
<div className="d-flex justify-content-end py-3 gap-2">
<button
type="button"
className="btn btn-secondary btn-xs"
className="btn btn-label-secondary btn-xs"
onClick={handleClose}
>
Clear