Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Employee_Managment_App/src/components/Employees.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const Employees = (props?: EmployeesProps) => {
grid.filterByColumn('TeamLead', 'equal', props.userInfo.Name);
} else if (sel === 'directReporters' && props?.userInfo?.Team) {
// Show colleagues in the same Team
grid.filterByColumn('Team', 'equal', props.userInfo.Team);
grid.filterByColumn('TeamLead', 'equal', props.userInfo.Name);
} else {
// 'active' or no selection => no filter (loads all)
// clearFiltering already done above
Expand Down
1 change: 1 addition & 0 deletions Employee_Managment_App/src/components/Organization.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const Organization = () => {
<ButtonComponent
cssClass={`e-outline org-pill ${selected === 'directReporters' ? 'org-pill--active e-primary' : ''}`}
onClick={() => handleSelect('directReporters')}
title='Including employees in India and the US'
aria-pressed={selected === 'directReporters'}
>
Direct Reporters
Expand Down
1 change: 1 addition & 0 deletions Employee_Managment_App/src/components/Policies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ const Policies: React.FC = () => {
dataSource={filteredData}
allowPaging={false}
allowSorting
className='policy-Grid'
enableAdaptiveUI={true}
allowResizing
toolbar={['Search']}
Expand Down
6 changes: 5 additions & 1 deletion Employee_Managment_App/src/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.