Switch to single quotes for template strings

This commit is contained in:
Gregory Schier
2024-08-22 12:48:14 -07:00
parent adda44e861
commit 6766bc8f59
3 changed files with 15 additions and 15 deletions

View File

@@ -136,7 +136,7 @@ export function TemplateFunctionDialog({ templateFunction, hide, initialTokens,
}
})}
</VStack>
<InlineCode className="select-text cursor-text">{rendered.data}</InlineCode>
<InlineCode className="select-text cursor-text">{rendered.data || <>&nbsp;</>}</InlineCode>
<Button color="primary" onClick={handleDone}>
Done
</Button>