Skip to content

Commit

Permalink
Fixed change estimate not properly supporting decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
danniehansen committed Nov 15, 2023
1 parent aab3f1e commit 5805631
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Released]

## [2.7.1] - 2023-11-15

### Fixed

- Fixed change estimate not properly supporting decimals

## [2.7.1] - 2023-11-02

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "activity_timer",
"version": "2.7.1",
"version": "2.7.2",
"author": "Dannie Hansen",
"license": "MIT",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions src/capabilities/card-back-section/change_estimate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
v-model="estimate"
placeholder="0"
class="w-full"
:format="false"
:use-grouping="false"
:min-fraction-digits="0"
:max-fraction-digits="2"
thousand-separator=""
/>
<label for="f-estimate">Estimate (in hours)</label>
</span>
Expand Down

0 comments on commit 5805631

Please sign in to comment.