Merge pull request #2512 from Hiramiya/avatarbannerfiletypes

Fix linting errors
This commit is contained in:
syuilo 2018-08-28 18:08:22 +09:00 committed by GitHub
commit 02341ceb6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 10 deletions

View file

@ -7,8 +7,8 @@ export default (os: OS) => {
const cropImage = file => new Promise((resolve, reject) => {
var regex = RegExp('\.(jpg|jpeg|png|gif|webp|bmp|tiff)$')
if(!regex.test(file.name) ) {
const regex = RegExp('\.(jpg|jpeg|png|gif|webp|bmp|tiff)$');
if (!regex.test(file.name) ) {
os.apis.dialog({
title: '%fa:info-circle% %i18n:desktop.invalid-filetype%',
text: null,
@ -16,7 +16,7 @@ export default (os: OS) => {
text: '%i18n:common.got-it%'
}]
});
reject
reject();
}
const w = os.new(CropWindow, {

View file

@ -7,9 +7,8 @@ export default (os: OS) => {
const cropImage = file => new Promise((resolve, reject) => {
var regex = RegExp('\.(jpg|jpeg|png|gif|webp|bmp|tiff)$')
if(!regex.test(file.name) ) {
const regex = RegExp('\.(jpg|jpeg|png|gif|webp|bmp|tiff)$');
if (!regex.test(file.name) ) {
os.apis.dialog({
title: '%fa:info-circle% %i18n:desktop.invalid-filetype%',
text: null,
@ -17,7 +16,7 @@ export default (os: OS) => {
text: '%i18n:common.got-it%'
}]
});
reject
reject();
}
const w = os.new(CropWindow, {