mirror of
https://github.com/immich-app/immich.git
synced 2026-04-16 23:51:55 -04:00
* feat: mobile editing fix: openapi patch this sucks :pepehands: chore: migrate some changes from the filtering PR chore: color tweak fix: hide edit button on server versions chore: translation * chore: code review changes chore: code review * sealed class * const constant * enum * concurrent queries * chore: major cleanup to use riverpod provider * fix: aspect ratio selection * chore: typesafe websocket event parsing * fix: wrong disable state for save button * chore: remove isCancelled shim * chore: cleanup postframe callback usage * chore: clean import --------- Co-authored-by: mertalev <101130780+mertalev@users.noreply.github.com>
18 lines
625 B
Diff
18 lines
625 B
Diff
@@ -20,7 +20,7 @@ class AssetEditActionItemDto {
|
|
/// Type of edit action to perform
|
|
AssetEditAction action;
|
|
|
|
- AssetEditActionItemDtoParameters parameters;
|
|
+ Map<String, dynamic> parameters;
|
|
|
|
@override
|
|
bool operator ==(Object other) => identical(this, other) || other is AssetEditActionItemDto &&
|
|
@@ -53,7 +53,7 @@ class AssetEditActionItemDto {
|
|
|
|
return AssetEditActionItemDto(
|
|
action: AssetEditAction.fromJson(json[r'action'])!,
|
|
- parameters: AssetEditActionItemDtoParameters.fromJson(json[r'parameters'])!,
|
|
+ parameters: json[r'parameters'],
|
|
);
|
|
}
|
|
return null;
|