Skip to content

Commit 4f23883

Browse files
authored
Update desktop version changelog (#26)
* update(desktop): updated version and changelog * fix(components/compounds): remove useless log
1 parent 2441388 commit 4f23883

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

apps/desktop/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.0.4 (16 Apr 2024)
2+
3+
- (Fix) Store search compound input so changing rows per page, or different page perserve it, instead of having to type again
4+
- (Fix) Searching compound always navigate back to first page, instead of defaulting to current page
5+
- (Fix) Compound search fallback to page 1 when there is no pages or only 1 page is available, instead of throwing error
6+
17
# 0.0.3 (14 Apr 2024)
28

39
- (Fix) Downgrade Ubuntu from latest version to 20.04 for building app in older version

apps/desktop/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@periotable/desktop",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"author": "PoolOfDeath20",
55
"private": true,
66
"license": "GPL",

apps/web/src/web/components/compounds/index.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,6 @@ const ListOfCompounds = (
273273
}, [search.unwrapOrGet('')]);
274274

275275
React.useEffect(() => {
276-
const search = debounceSearch.unwrapOrGet(undefined);
277-
278-
console.log({ search, oldSearch });
279-
280276
debounceSearch.ifSome((search) => {
281277
if (oldSearch !== search) {
282278
switch (props.useNativeRouter) {

0 commit comments

Comments
 (0)