Skip to content

Commit

Permalink
Temporarily workaround for an issue of not showing a JSON settings (#325
Browse files Browse the repository at this point in the history
)
  • Loading branch information
seeyabye committed May 6, 2023
1 parent 0f3e2d7 commit 157e68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Javinizer/Universal/Repository/javinizergui.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3184,7 +3184,7 @@ $Pages += New-UDPage -Name "Settings" -Content {
New-UDButton -Icon $iconEdit -Text 'Json' -Size large -FullWidth -OnClick {
Show-UDModal -FullScreen -Content {
$settingsContent = (Get-Content -LiteralPath $cache:settingsPath) -join "`r`n"
New-UDCodeEditor -Id 'editor-settings-json' -Autosize -Language json -Theme vs-dark -Code $settingsContent
New-UDCodeEditor -Id 'editor-settings-json' -Autosize -Width '100%' -Height '100%' -Language 'json' -Theme vs-dark -Code $settingsContent
} -Header {
"jvSettings.json"
} -Footer {
Expand Down

0 comments on commit 157e68a

Please sign in to comment.