Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/reselect-4.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen authored Aug 26, 2024
2 parents 4af1289 + 7cf50b1 commit 10086f5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.DHIS2_BOT_GITHUB_TOKEN }}
DEBUG: '@semantic-release/commit-analyzer'

- name: Publish to AppHub
run: yarn run d2-app-scripts publish
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [101.1.8](https://github.com/dhis2/line-listing-app/compare/v101.1.7...v101.1.8) (2024-08-26)


### Bug Fixes

* display correct app version in dhis2 and updated workflows ([#581](https://github.com/dhis2/line-listing-app/issues/581)) ([d31979f](https://github.com/dhis2/line-listing-app/commit/d31979fbd451349813b32c90ea2bdb147d28ce92))
* use saved visualization in interpretation modal ([#551](https://github.com/dhis2/line-listing-app/issues/551)) ([6e42b92](https://github.com/dhis2/line-listing-app/commit/6e42b9264e71b95a0a45b65cfde5846061883519))

## [101.1.7](https://github.com/dhis2/line-listing-app/compare/v101.1.6...v101.1.7) (2024-08-25)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "line-listing-app",
"version": "101.1.7",
"version": "101.1.8",
"description": "DHIS2 Line Listing",
"license": "BSD-3-Clause",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions src/components/InterpretationModal/InterpretationModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
import PropTypes from 'prop-types'
import React, { useState, useEffect } from 'react'
import { useSelector } from 'react-redux'
import { sGetCurrent } from '../../reducers/current.js'
import { sGetVisualization } from '../../reducers/visualization.js'
import { ModalDownloadDropdown } from '../DownloadMenu/index.js'
import { Visualization } from '../Visualization/Visualization.js'
import {
Expand All @@ -16,7 +16,7 @@ import {
const InterpretationModal = ({ onInterpretationUpdate }) => {
const { interpretationId, initialFocus } = useInterpretationQueryParams()
const [isVisualizationLoading, setIsVisualizationLoading] = useState(false)
const visualization = useSelector(sGetCurrent)
const visualization = useSelector(sGetVisualization)
const { currentUser } = useCachedDataQuery()

useEffect(() => {
Expand Down

0 comments on commit 10086f5

Please sign in to comment.