Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
GottZ committed Mar 17, 2024
1 parent 1430049 commit b5fe394
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/ui/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,14 @@ export async function renderValue(
}

if (Values.isNull(field)) {
await renderCompactMarkdown(app, settings.renderNullAs, container, originFile, component, isInlineFieldLivePreview);
await renderCompactMarkdown(
app,
settings.renderNullAs,
container,
originFile,
component,
isInlineFieldLivePreview
);
} else if (Values.isDate(field)) {
container.appendText(renderMinimalDate(field, settings, currentLocale()));
} else if (Values.isDuration(field)) {
Expand Down

0 comments on commit b5fe394

Please sign in to comment.