Skip to content

Commit 6b97c21

Browse files
committed
Fix linter
1 parent da66b60 commit 6b97c21

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

app/client/ui/DocumentSettings.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ document is first opened, or when a document responds to changes.'
176176
expandedContent: dom('div',
177177
cssWrap(
178178
t('Document ID to use whenever the REST API calls for {{docId}}. See {{apiURL}}', {
179-
apiURL: cssLink({href: window.gristConfig.commonUrls.helpAPI, target: '_blank'}, t('API documentation.')),
179+
apiURL: cssLink(
180+
{href: window.gristConfig.commonUrls.helpAPI, target: '_blank'}, t('API documentation.')
181+
),
180182
docId: dom('code', 'docId')
181183
})
182184
),
@@ -573,7 +575,9 @@ No data will be lost, except possibly currently pending actions.'
573575
description: t('Document automatically opens in {{fiddleModeDocUrl}}. \
574576
Anyone may edit, which will create a new unsaved copy.',
575577
{
576-
fiddleModeDocUrl: cssLink({href: window.gristConfig.commonUrls.helpFiddleMode, target: '_blank'}, t('fiddle mode'))
578+
fiddleModeDocUrl: cssLink(
579+
{href: window.gristConfig.commonUrls.helpFiddleMode, target: '_blank'}, t('fiddle mode')
580+
)
577581
}
578582
),
579583
itemTestId: testId('doctype-modal-option-template'),

app/client/ui/GristTooltips.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@ record in that table, but you may select which column from that record to show.'
318318
entire: cssItalicizedText(t('entire'))
319319
})),
320320
dom('div',
321-
cssLink({href: window.gristConfig.commonUrls.helpUnderstandingReferenceColumns, target: '_blank'}, t('Learn more.')),
321+
cssLink(
322+
{href: window.gristConfig.commonUrls.helpUnderstandingReferenceColumns, target: '_blank'}, t('Learn more.')
323+
),
322324
),
323325
...args,
324326
),

0 commit comments

Comments
 (0)