Update app version to v0.13.0-beta-070826 and improve CategoryFilterDropdown functionality

- Updated the application version in the config file to reflect the latest release.
- Enhanced the CategoryFilterDropdown component by resetting the types variable when clearing selections, ensuring proper state management during user interactions.
This commit is contained in:
Sean Morley
2026-07-08 17:30:35 -04:00
parent fe30ad90e6
commit 178a5ccaea
2 changed files with 4 additions and 2 deletions

View File

@@ -32,6 +32,7 @@
function clearTypes() {
types_arr = [];
types = '';
dispatch('change', { types: '' });
}
@@ -41,7 +42,8 @@
} else {
types_arr = [...types_arr, type];
}
dispatch('change', { types: types_arr.join(',') });
types = types_arr.join(',');
dispatch('change', { types });
}
</script>

View File

@@ -1,4 +1,4 @@
export let appVersion = 'v0.13.0-beta-062926';
export let appVersion = 'v0.13.0-beta-070826';
export let appCodename = 'Acadia';
export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.12.1';
export let appTitle = 'AdventureLog';