Fix image importing due to incorrect variable name (#781)

This commit is contained in:
0HyperCube
2022-09-23 18:53:03 +01:00
committed by GitHub
parent 461064c81d
commit ac4b33f9f5

View File

@@ -13,6 +13,7 @@ pub struct FrontendDocumentDetails {
pub struct FrontendImageData {
pub path: Vec<LayerId>,
pub mime: String,
#[serde(rename = "imageData")]
pub image_data: Vec<u8>,
}