stable

Clone or download

Read-only

fix: Display the right active category and template when user steps back

part of: story #22210: select SAFe templates at project creation How to test: - Select a category and a template - Go to the next project creation step - Step back --> The previously selected template category is active --> The previously selected template appears selected - Do the same test with the Advanced category by selecting the [From another project I am administrator] --> Same expectations than previous test --> The previously selected project is still selected Change-Id: I8f1a3e7899536a59d597000b11e98a5b5c259bc7

Modified Files

Name
M src/scripts/project/registration/index.ts +2 −0 Go to diff View file
M src/scripts/project/registration/src/components/Information/ProjectInformation.vue +5 −0 Go to diff View file
M src/scripts/project/registration/src/components/Information/ProjectInformationFooter.test.ts +2 −2 Go to diff View file
M src/scripts/project/registration/src/components/Information/ProjectInformationFooter.vue +3 −3 Go to diff View file
M src/scripts/project/registration/src/components/Template/Advanced/AdvancedTemplateList.test.ts +60 −50 Go to diff View file
M src/scripts/project/registration/src/components/Template/Advanced/AdvancedTemplateList.vue +31 −9 Go to diff View file
M src/scripts/project/registration/src/components/Template/Advanced/UserProjectList.test.ts +13 −3 Go to diff View file
M src/scripts/project/registration/src/components/Template/Advanced/UserProjectList.vue +10 −1 Go to diff View file
M src/scripts/project/registration/src/components/Template/TemplateCard.test.ts +40 −18 Go to diff View file
M src/scripts/project/registration/src/components/Template/TemplateCard.vue +9 −0 Go to diff View file
M src/scripts/project/registration/src/components/Template/TemplateSelection.test.ts +77 −1 Go to diff View file
M src/scripts/project/registration/src/components/Template/TemplateSelection.vue +13 −7 Go to diff View file
M src/scripts/project/registration/src/store/actions.ts +6 −1 Go to diff View file
M src/scripts/project/registration/src/store/getters.test.ts +27 −0 Go to diff View file
M src/scripts/project/registration/src/store/getters.ts +15 −0 Go to diff View file
M src/scripts/project/registration/src/store/mutations.test.ts +5 −19 Go to diff View file
M src/scripts/project/registration/src/store/mutations.ts +12 −3 Go to diff View file
M src/scripts/project/registration/src/store/state.ts +2 −0 Go to diff View file
M src/scripts/project/registration/src/store/type.ts +4 −0 Go to diff View file