Fix bug
This commit is contained in:
		
							parent
							
								
									4a9a61f108
								
							
						
					
					
						commit
						8f39655fef
					
				
					 2 changed files with 5 additions and 4 deletions
				
			
		| 
						 | 
					@ -35,7 +35,7 @@
 | 
				
			||||||
				<p v-if="passwordRetypeState == 'not-match'" style="color:#FF1161"><fa icon="exclamation-triangle" fixed-width/> %i18n:@password-not-matched%</p>
 | 
									<p v-if="passwordRetypeState == 'not-match'" style="color:#FF1161"><fa icon="exclamation-triangle" fixed-width/> %i18n:@password-not-matched%</p>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
		</ui-input>
 | 
							</ui-input>
 | 
				
			||||||
		<div v-if="meta.recaptchaSiteKey != null" class="g-recaptcha" :data-sitekey="meta.recaptchaSiteKey" style="margin: 16px 0;"></div>
 | 
							<div v-if="meta.enableRecaptcha" class="g-recaptcha" :data-sitekey="meta.recaptchaSiteKey" style="margin: 16px 0;"></div>
 | 
				
			||||||
		<ui-button type="submit">%i18n:@create%</ui-button>
 | 
							<ui-button type="submit">%i18n:@create%</ui-button>
 | 
				
			||||||
	</template>
 | 
						</template>
 | 
				
			||||||
</form>
 | 
					</form>
 | 
				
			||||||
| 
						 | 
					@ -130,7 +130,7 @@ export default Vue.extend({
 | 
				
			||||||
				username: this.username,
 | 
									username: this.username,
 | 
				
			||||||
				password: this.password,
 | 
									password: this.password,
 | 
				
			||||||
				invitationCode: this.invitationCode,
 | 
									invitationCode: this.invitationCode,
 | 
				
			||||||
				'g-recaptcha-response': this.meta.recaptchaSiteKey != null ? (window as any).grecaptcha.getResponse() : null
 | 
									'g-recaptcha-response': this.meta.enableRecaptcha ? (window as any).grecaptcha.getResponse() : null
 | 
				
			||||||
			}, true).then(() => {
 | 
								}, true).then(() => {
 | 
				
			||||||
				(this as any).api('signin', {
 | 
									(this as any).api('signin', {
 | 
				
			||||||
					username: this.username,
 | 
										username: this.username,
 | 
				
			||||||
| 
						 | 
					@ -141,7 +141,7 @@ export default Vue.extend({
 | 
				
			||||||
			}).catch(() => {
 | 
								}).catch(() => {
 | 
				
			||||||
				alert('%i18n:@some-error%');
 | 
									alert('%i18n:@some-error%');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if (this.meta.recaptchaSiteKey != null) {
 | 
									if (this.meta.enableRecaptcha) {
 | 
				
			||||||
					(window as any).grecaptcha.reset();
 | 
										(window as any).grecaptcha.reset();
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			});
 | 
								});
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -60,7 +60,8 @@ export default define(meta, (ps, me) => new Promise(async (res, rej) => {
 | 
				
			||||||
		driveCapacityPerLocalUserMb: instance.localDriveCapacityMb,
 | 
							driveCapacityPerLocalUserMb: instance.localDriveCapacityMb,
 | 
				
			||||||
		driveCapacityPerRemoteUserMb: instance.remoteDriveCapacityMb,
 | 
							driveCapacityPerRemoteUserMb: instance.remoteDriveCapacityMb,
 | 
				
			||||||
		cacheRemoteFiles: instance.cacheRemoteFiles,
 | 
							cacheRemoteFiles: instance.cacheRemoteFiles,
 | 
				
			||||||
		recaptchaSiteKey: instance.enableRecaptcha ? instance.recaptchaSiteKey : null,
 | 
							enableRecaptcha: instance.enableRecaptcha,
 | 
				
			||||||
 | 
							recaptchaSiteKey: instance.recaptchaSiteKey,
 | 
				
			||||||
		swPublickey: config.sw ? config.sw.public_key : null,
 | 
							swPublickey: config.sw ? config.sw.public_key : null,
 | 
				
			||||||
		bannerUrl: instance.bannerUrl,
 | 
							bannerUrl: instance.bannerUrl,
 | 
				
			||||||
		maxNoteTextLength: instance.maxNoteTextLength,
 | 
							maxNoteTextLength: instance.maxNoteTextLength,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue