Skip to content

Commit

Permalink
ordre : style yaml après focusStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
eyssette committed Jul 22, 2024
1 parent 9d6ebcd commit 55ea9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
maxWidthFromYAML = yamlData.hasOwnProperty('maxWidth') ? yamlData.maxWidth : 250;
initialExpandLevel = yamlData.hasOwnProperty('initialExpandLevel') ? yamlData.initialExpandLevel : 2;
colorFreezeLevel = yamlData.hasOwnProperty('colorFreezeLevel') ? yamlData.colorFreezeLevel : 2;
style = style + ' ' + focusStyle;
style = focusStyle + ' ' + style;
} else {
maxWidthFromYAML = yamlData.hasOwnProperty('maxWidth') ? yamlData.maxWidth : 500;
initialExpandLevel = yamlData.hasOwnProperty('initialExpandLevel') ? yamlData.initialExpandLevel : -1;
Expand Down

0 comments on commit 55ea9b7

Please sign in to comment.