-
Notifications
You must be signed in to change notification settings - Fork 8
Bugfix/beta release #773
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
Merged
Merged
Bugfix/beta release #773
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9c9d4ac
refactor:resolved the bug [CMG-697]:UI overlapping issue
AishDani d65df99
refactor:resolved [CMG-699] login switch issue
AishDani e7316ba
refactor:resolved language mapper bugs
AishDani bd7c5fa
refactor:removed commented code
AishDani 517d442
refactor:resolved copilot reviews
AishDani 5317254
refactor:added LoadLanguageMapper.tsx to fileignoreconfig
AishDani File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -163,6 +163,13 @@ const Mapper = ({ | |
| setSelectedMappings(updatedSelectedMappings); | ||
|
|
||
| } | ||
| else if ( !isLabelMismatch && !isStackChanged ) { | ||
| const key = `${locale?.label}-master_locale` | ||
| updatedSelectedMappings = { | ||
| [key]: updatedSelectedMappings?.[`${locale?.label}-master_locale`] ? updatedSelectedMappings?.[`${locale?.label}-master_locale`] : '', | ||
| }; | ||
| setSelectedMappings(updatedSelectedMappings); | ||
| } | ||
|
Comment on lines
+166
to
+172
|
||
| } | ||
| }) | ||
|
|
||
|
|
@@ -513,7 +520,7 @@ const LanguageMapper = ({stack, uid} :{ stack : IDropDown, uid : string}) => { | |
| const [options, setoptions] = useState<{ label: string; value: string }[]>([]); | ||
| const [cmsLocaleOptions, setcmsLocaleOptions] = useState<{ label: string; value: string }[]>([]); | ||
| const [sourceLocales, setsourceLocales] = useState<{ label: string; value: string }[]>([]); | ||
| const [isLoading, setisLoading] = useState<boolean>(false); | ||
| const [isLoading, setisLoading] = useState<boolean>(true); | ||
| const [currentStack, setCurrentStack] = useState<IDropDown>(stack); | ||
| const [previousStack, setPreviousStack] = useState<IDropDown>(); | ||
| const [isStackChanged, setisStackChanged] = useState<boolean>(false); | ||
|
|
@@ -618,6 +625,7 @@ const LanguageMapper = ({stack, uid} :{ stack : IDropDown, uid : string}) => { | |
| // return await getStackLocales(newMigrationData?.destination_stack?.selectedOrg?.value); | ||
| // }; | ||
| const addRowComp = () => { | ||
| setisStackChanged(false); | ||
| setcmsLocaleOptions((prevList: { label: string; value: string }[]) => [ | ||
| ...prevList, // Keep existing elements | ||
| { | ||
|
|
@@ -628,6 +636,7 @@ const LanguageMapper = ({stack, uid} :{ stack : IDropDown, uid : string}) => { | |
| }; | ||
|
|
||
| const handleDeleteLocale = (id: number, locale: { label: string; value: string }) => { | ||
| setisStackChanged(false); | ||
| setcmsLocaleOptions((prevList) => { | ||
| return prevList?.filter( | ||
| (item: { label: string; value: string }) => item?.label !== locale?.label | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The padding shorthand
10px 10pxcan be simplified to just10pxsince both vertical and horizontal values are the same.