Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sign Translation Assistant
Manage
Activity
Members
Labels
Plan
Issues
102
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
software
research
Sign-Language
Sign Translation Assistant
Merge requests
!111
Edit sign fixed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Edit sign fixed
Issue145-edit_dictionary_fix
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Liju Jacob
requested to merge
Issue145-edit_dictionary_fix
into
dev
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
#145
fixed Edit not working in dictionary.
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
b504b4ae
1 commit,
1 year ago
1 file
+
1
−
1
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Component/DictionaryManagement/EditSign.js
+
1
−
1
Options
@@ -20,7 +20,7 @@ import MuiAlert from '@material-ui/lab/Alert';
export
default
function
EditSign
(
props
)
{
const
[
open
,
setOpen
]
=
React
.
useState
(
false
);
const
{
sourceName
}
=
props
.
sourceName
;
const
{
sourceName
}
=
props
;
const
[
selectedWord
,
setSelectedWord
]
=
React
.
useState
(
props
.
selectedWord
);
const
[
synonyms
,
setSynonyms
]
=
React
.
useState
(
props
.
synonyms
);
const
[
description
,
setDescription
]
=
React
.
useState
(
props
.
description
);