mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
fix: reset-password
This commit is contained in:
parent
1010de5cfb
commit
cad2e3c8c5
|
|
@ -14,14 +14,14 @@ export default {
|
|||
restoreVersion: 'Restore Version',
|
||||
restoreCurrentVersion: 'Restore This Version',
|
||||
addComponent: 'Add Component',
|
||||
public: 'Publish',
|
||||
public: 'Release',
|
||||
releaseHistory: 'Release History',
|
||||
autoSave: 'Auto Save',
|
||||
latestRelease: 'Latest Release',
|
||||
copyParam: 'Copy Parameter'
|
||||
},
|
||||
tip: {
|
||||
publicSuccess: 'Published successfully',
|
||||
publicSuccess: 'Successfully',
|
||||
noData: 'No related results found',
|
||||
nameMessage: 'Name cannot be empty!',
|
||||
onlyRight: 'Only allow connections from the right anchor point',
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ export default {
|
|||
}
|
||||
},
|
||||
buttons: {
|
||||
publish: 'Save&Publish',
|
||||
publish: 'Save&Release',
|
||||
addModel: 'Add Model'
|
||||
},
|
||||
dialog: {
|
||||
|
|
|
|||
|
|
@ -41,6 +41,11 @@ export const routes: Array<RouteRecordRaw> = [
|
|||
name: 'forgot_password',
|
||||
component: () => import('@/views/login/forgot-password/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/reset_password/:code/:email',
|
||||
name: 'reset_password',
|
||||
component: () => import('@/views/login/reset-password/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/:pathMatch(.*)',
|
||||
name: '404',
|
||||
|
|
|
|||
Loading…
Reference in New Issue