Skip to content

Commit 5a54839

Browse files
committed
Fix bug: last updated date was not changing in modal
1 parent b4de4ce commit 5a54839

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ This applies from version 0.5.0 onwards, as some versions before that have broke
1414
### Added
1515
### Changed
1616
### Fixed
17+
18+
- Fix bug where last updated date was not changing in "View as single item" modal dialog.
19+
1720
### Removed
1821

1922
## [3.4.1] - 2023-06-25

glossary.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ domReady(() => {
180180
constructor() { super(); }
181181
connectedCallback() { this.setTextContent(); }
182182
attributeChangedCallback() { this.setTextContent(); }
183-
static get observedAttributes() { return []; }
183+
static get observedAttributes() { return ['datetime']; }
184184

185185
setTextContent() {
186186
const datetimeAttribute = this.getAttribute('datetime');

0 commit comments

Comments
 (0)