mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
fix(mobile): first char miss in new description (#4697)
Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
parent
b92a2b2a56
commit
b117985f66
@ -31,7 +31,14 @@ class DescriptionInput extends HookConsumerWidget {
|
|||||||
final owner = ref.watch(currentUserProvider);
|
final owner = ref.watch(currentUserProvider);
|
||||||
final hasError = useState(false);
|
final hasError = useState(false);
|
||||||
|
|
||||||
controller.text = description;
|
useEffect(
|
||||||
|
() {
|
||||||
|
controller.text = description;
|
||||||
|
isTextEmpty.value = description.isEmpty;
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
[description],
|
||||||
|
);
|
||||||
|
|
||||||
submitDescription(String description) async {
|
submitDescription(String description) async {
|
||||||
hasError.value = false;
|
hasError.value = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user