diff --git a/changelog.md b/changelog.md index 18571a1469..df4c56528b 100644 --- a/changelog.md +++ b/changelog.md @@ -71,6 +71,7 @@ - [#3203](https://github.com/ignite/cli/issues/3203) Fix relayer to work with multiple paths. - [#3320](https://github.com/ignite/cli/pull/3320) Allow `id` and `creator` as names when scaffolding a type. - [#3327](https://github.com/ignite/cli/issues/3327) Scaffolding messages with same name leads to aliasing. +- [#3379](https://github.com/ignite/cli/issues/3379) Fix `ignite docs` issue by disabling mouse support. ## [`v0.25.2`](https://github.com/ignite/cli/releases/tag/v0.25.1) diff --git a/ignite/pkg/markdownviewer/markdownviewer.go b/ignite/pkg/markdownviewer/markdownviewer.go index a45a982b80..900765c979 100644 --- a/ignite/pkg/markdownviewer/markdownviewer.go +++ b/ignite/pkg/markdownviewer/markdownviewer.go @@ -14,19 +14,9 @@ func View(path string) error { return err } + // TODO: Enable bubbletea WithAltScreen and WithMouseCellMotion options when glow supports them p := ui.NewProgram(conf) - // TODO: refactor to remove deprecated function calls - //nolint:staticcheck,nolintlint - p.EnterAltScreen() - //nolint:staticcheck,nolintlint - defer p.ExitAltScreen() - - //nolint:staticcheck,nolintlint - p.EnableMouseCellMotion() - //nolint:staticcheck,nolintlint - defer p.DisableMouseCellMotion() - _, err = p.Run() return err }