Skip to content

Commit cad2e3c

Browse files
fix: reset-password
1 parent 1010de5 commit cad2e3c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

ui/src/locales/lang/en-US/views/application-workflow.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ export default {
1414
restoreVersion: 'Restore Version',
1515
restoreCurrentVersion: 'Restore This Version',
1616
addComponent: 'Add Component',
17-
public: 'Publish',
17+
public: 'Release',
1818
releaseHistory: 'Release History',
1919
autoSave: 'Auto Save',
2020
latestRelease: 'Latest Release',
2121
copyParam: 'Copy Parameter'
2222
},
2323
tip: {
24-
publicSuccess: 'Published successfully',
24+
publicSuccess: 'Successfully',
2525
noData: 'No related results found',
2626
nameMessage: 'Name cannot be empty!',
2727
onlyRight: 'Only allow connections from the right anchor point',

ui/src/locales/lang/en-US/views/application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default {
109109
}
110110
},
111111
buttons: {
112-
publish: 'Save&Publish',
112+
publish: 'Save&Release',
113113
addModel: 'Add Model'
114114
},
115115
dialog: {

ui/src/router/routes.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ export const routes: Array<RouteRecordRaw> = [
4141
name: 'forgot_password',
4242
component: () => import('@/views/login/forgot-password/index.vue')
4343
},
44+
{
45+
path: '/reset_password/:code/:email',
46+
name: 'reset_password',
47+
component: () => import('@/views/login/reset-password/index.vue')
48+
},
4449
{
4550
path: '/:pathMatch(.*)',
4651
name: '404',

0 commit comments

Comments
 (0)