mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-08-02 08:51:32 -04:00
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:
@@ -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>
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user