Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nisum-scorecard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Venkaiah Naidu Singamchetty
nisum-scorecard
Commits
26bc79cc
Commit
26bc79cc
authored
Mar 21, 2024
by
Venkaiah Naidu Singamchetty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comments error rectified
parent
cf757f09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
index.jsx
src/components/leftSidebar/index.jsx
+4
-4
index.jsx
src/components/modal/index.jsx
+1
-1
No files found.
src/components/leftSidebar/index.jsx
View file @
26bc79cc
...
...
@@ -51,22 +51,22 @@ function LeftSidebar() {
return
(
<
div
className=
"
w-[33%] flex flex-col px-[5px]"
>
<
div
className=
"flex mt-3 items-center justify-between"
>
<
div
className=
" w-[33%] flex flex-col px-[5px]"
>
<
div
className=
"
flex mt-3 items-center justify-between"
>
<
p
className=
"text-xl text-blue-400 font-semibold pl-4"
>
Reportees
</
p
>
<
input
placeholder=
"Search"
type=
"text"
className=
"p-2
mi-2 border rounded w-[160
px]"
className=
"p-2
border rounded w-[160px] placeholder:text-[14
px]"
value=
{
inputValue
}
onChange=
{
handleChange
}
/>
</
div
>
{
(
loading
)
?
<
Loading
/>
:
<
div
className=
"p-2 bg-[#E9EDEE] mt-4 max-h-[
8
0vh] overflow-auto"
>
<
div
className=
"p-2 bg-[#E9EDEE] mt-4 max-h-[
7
0vh] overflow-auto"
>
{
reportees
?.
map
(({
empName
,
score
,
empId
})
=>
(
<
button
onClick=
{
()
=>
dispatch
(
setViewReportee
(
empId
))
}
// to=
{`/
viewreportee
`}
...
...
src/components/modal/index.jsx
View file @
26bc79cc
...
...
@@ -55,7 +55,7 @@ export default function MyModal({ visible, onClose, type, handleAddActivity }) {
}
const
handleComments
=
(
e
)
=>
{
setActivityData
({
...
activityData
,
comments
:
e
.
target
.
value
})
setActivityData
({
...
activityData
,
comments
:
e
.
target
.
value
.
trim
()
})
}
const
handleSubmit
=
(
e
)
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment