Skip to content

Commit

Permalink
[other] fix web UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke Izumiya committed Oct 9, 2024
1 parent 3042a70 commit 4b610fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pon2.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.22.0"
version = "0.22.1"
author = "Keisuke Izumiya"
description = "Application for Puyo Puyo and Nazo Puyo"
license = "Apache-2.0"
Expand Down
5 changes: 3 additions & 2 deletions src/pon2/app/ide.nim
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,9 @@ when defined(js):
proc newIdeNode(self: Ide, id: string): VNode {.inline.} =
## Returns the IDE node without the external section.
let
simulatorNode =
self.simulator.newSimulatorNode(id = &"{MainSimulatorIdPrefix}{id}")
simulatorNode = self.simulator.newSimulatorNode(
wrapSection = false, id = &"{MainSimulatorIdPrefix}{id}"
)
settingsId = &"{SettingsIdPrefix}{id}"

result = buildHtml(tdiv(class = "columns is-mobile is-variable is-1")):
Expand Down

0 comments on commit 4b610fc

Please sign in to comment.