Skip to content

Commit 72a3634

Browse files
committed
Release 2021.3.0: document updates
- also includes a bug fix with ExpandedOptionsPopup.jsx that probably happened during a merge
1 parent 1665364 commit 72a3634

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

docs/release-notes.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,28 @@
44
- See Firefly docker guidelines [here](firefly-docker.md).
55
- To Access current (unstable) development - (Version _next_, unreleased) use docker tag: `nightly`
66

7-
## Version 2021.3 - Unreleased - expected in August 2021
7+
## Version 2021.3
88
- 2021.3.0 (Aug 2021)
99
- docker tag: `release-2021.3.0`
1010
- original release
1111

1212
### _Notes_
13-
- This release contains many bugs fixes
1413
- Options to remove group images. ([Firefly-708](https://github.com/Caltech-IPAC/firefly/pull/1070))
1514
- File saving names improved. ([Firefly-823](https://github.com/Caltech-IPAC/firefly/pull/1109))
1615
- Improved accessibility for small screen with image search panel ([Firefly-800](https://github.com/Caltech-IPAC/firefly/pull/1107))
16+
- This release contains many bug fixes:
17+
- fixed: HiPS mouse wheel zooming more accurate
18+
- fixed: thumbnail scroll not working
19+
- fixed: upload panel clear button not completely clearing data ([Firefly-825](https://github.com/Caltech-IPAC/firefly/pull/1116))
20+
- fixed: Upload panel now shows progress feedback and indicator now works when loading images ([Firefly-828](https://github.com/Caltech-IPAC/firefly/pull/1113))
21+
- fixed: Table Input fields sometimes duplicate entries ([Firefly-829](https://github.com/Caltech-IPAC/firefly/pull/1115))
22+
- fixed: slate entries point not showing tap/table searches button correctly
23+
24+
##### _Pull Request in this release_
25+
- [Bug Fixes](https://github.com/caltech-ipac/firefly/pulls?q=is%3apr+milestone%3a2021.3+label%3abug)
26+
- [All PRs](https://github.com/caltech-ipac/firefly/pulls?q=is%3apr++milestone%3a2021.3+)
27+
28+
1729

1830
## Version 2021.2
1931
- 2021.2.4 (July 2021)

src/firefly/js/visualize/ui/ExpandedOptionsPopup.jsx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,6 @@ function ImageViewOptionsPanel() {
213213
if (!model) return null;
214214

215215

216-
const DeleteFailedButton = () => (
217-
<button type='button' className='button std hl'
218-
onClick={() => deleteFailed()}>Delete Failed
219-
</button>
220-
);
221-
222-
223216
return (
224217
<div style={{
225218
resize: 'both', overflow: 'hidden', display: 'flex', flexDirection: 'column',
@@ -230,7 +223,6 @@ function ImageViewOptionsPanel() {
230223
<div className='TablePanel'>
231224
<div className={'TablePanel__wrapper--border'}>
232225
<div className='TablePanel__table' style={{top: 0}}>
233-
<DeleteFailedButton />
234226
<TablePanel
235227
tbl_ui_id={tbl_ui_id}
236228
tableModel={model}

0 commit comments

Comments
 (0)