Skip to content

Commit

Permalink
Fix formattable-input.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Aug 3, 2023
1 parent 23fd8c9 commit 9076ea0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ function getValueFromMode(value: string | undefined, mode: TemplateMode) {
value = value.trim();

switch (mode) {
case 'Liquid': {
return `Liquid(${value})`;
}
case 'Script': {
`Script(${value})`;
}
case 'Liquid':
value = `Liquid(${value})`;
break;
case 'Script':
value = `Script(${value})`;
break;
}

return value;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/theme/_vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $color-border-darker: darken($color-border, 15%);

$color-title: #000;
$color-text: #373a3c;
$color-text-decent: #545863;
$color-text-decent: #41444C;
$color-tooltip: #1a2129;

$color-code-background: #f5f7f9;
Expand Down

0 comments on commit 9076ea0

Please sign in to comment.