Merge pull request 'add reset-password' (!1207) from hotFix-reset-password into test
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #1207
Reviewed-by: Joan Sanchez <joan@verdnatura.es>
This commit is contained in:
Alex Moreno 2022-12-15 07:16:48 +00:00
commit 0ad4a1ae3a
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export default class App extends Component {
get showLayout() {
const state = this.$state.current.name || this.$location.$$path.substring(1).replace('/', '.');
const outLayout = ['login', 'recoverPassword', 'resetPassword'];
const outLayout = ['login', 'recoverPassword', 'resetPassword', 'reset-password'];
return state && !outLayout.some(ol => ol == state);
}