1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix tests

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-01-13 16:39:48 -05:00
parent 970d2d28ca
commit ac92299778

View File

@ -27,8 +27,8 @@ const terminalFontPreferenceModelInjectable = getInjectable({
return {
options: computed(() => terminalFonts.map(font => ({
label: (
<span style={{ fontFamily: `${font}, var(--font-terminal)`, fontSize: userStore.terminalConfig.fontSize }}>
{font}
<span style={{ fontFamily: `${font.name}, var(--font-terminal)`, fontSize: userStore.terminalConfig.fontSize }}>
{font.name}
</span>
),
value: font.name,