Skip to content

Commit

Permalink
fixed problem with groups when 'always render' is activated (#205)
Browse files Browse the repository at this point in the history
* sort pages and projects alphabetically

-closes #163

* rm log

* fixed problem with groups when 'always render' is activated

---------

Signed-off-by: Max Hauser <[email protected]>
  • Loading branch information
foxriver76 authored Nov 27, 2023
1 parent 32f34d1 commit 846ea8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ E.g., if it was used in a menu and the menu is red, the circle would be red.
* (foxriver76) only allow zip files at project import
* (foxriver76) fix overflow being overwritten
* (foxriver76) sort pages and projects alphabetically
* (foxriver76) fixed problem with groups when `always render` is activated

### 2.8.0 (2023-11-24)
* (foxriver76) sort folders alphabetically in pages view
Expand Down
2 changes: 1 addition & 1 deletion src/src/Vis/visEngine.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2070,7 +2070,7 @@ ${this.scripts}
const views = Object.keys(visProject).map(view => {
if (view !== '___settings' && (
view === this.props.activeView ||
visProject[view].settings?.alwaysRender ||
(visProject[view].settings?.alwaysRender && !this.props.selectedGroup) ||
(!this.props.editMode && this.state.legacyRequestedViews.includes(view))
)) {
return <VisView
Expand Down

0 comments on commit 846ea8b

Please sign in to comment.