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 Keavon Chambers
parent ab75f0fbfb
commit 914b940122

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>,
}