1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-20 08:01:32 +02:00

npm run format

This commit is contained in:
Danny Coates 2019-07-11 10:47:42 -07:00
parent 9c2fe39764
commit 3b8dbfd81c
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
2 changed files with 4 additions and 6 deletions

View File

@ -153,9 +153,7 @@ export default class FileReceiver extends Nanobus {
const downloadPath = `/api/download/${this.fileInfo.id}`;
let downloadUrl = getApiUrl(downloadPath);
if (downloadUrl === downloadPath) {
downloadUrl = `${location.protocol}//${location.host}/api/download/${
this.fileInfo.id
}`;
downloadUrl = `${location.protocol}//${location.host}/api/download/${this.fileInfo.id}`;
}
const a = document.createElement('a');
a.href = downloadUrl;

View File

@ -10,9 +10,9 @@ export async function getTranslator(locale) {
const bundles = [];
const { default: en } = await import('../public/locales/en-US/send.ftl');
if (locale !== 'en-US') {
const {
default: ftl
} = await import(`../public/locales/${locale}/send.ftl`);
const { default: ftl } = await import(
`../public/locales/${locale}/send.ftl`
);
bundles.push(makeBundle(locale, ftl));
}
bundles.push(makeBundle('en-US', en));