1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Tools: Add eslint rule "@typescript-eslint/no-inferrable-types"

This commit is contained in:
Laurent Cozic
2023-02-05 11:32:28 +00:00
parent e629a4d325
commit 0019bb8d6b
18 changed files with 24 additions and 23 deletions

View File

@ -178,7 +178,7 @@ export default class ReportService {
for (let i = 0; i < disabledItems.length; i++) {
const row = disabledItems[i];
let msg: string = '';
let msg = '';
if (row.location === BaseItem.SYNC_ITEM_LOCATION_LOCAL) {
msg = _('%s (%s) could not be uploaded: %s', row.item.title, row.item.id, row.syncInfo.sync_disabled_reason);
} else {