Skip to content

Commit

Permalink
fix datetime field: value getter returns db-appropriate format
Browse files Browse the repository at this point in the history
  • Loading branch information
hinanaya committed Jul 2, 2024
1 parent 1734bfe commit 0c076ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/fields/datetime.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class OBFieldDatetime extends OBField {
}

get value() {
return this.#valueString;
return this.#value;
}

set value(value) {
Expand Down

0 comments on commit 0c076ee

Please sign in to comment.