Skip to content
Snippets Groups Projects

Resolve MIN-91 "Feat/ editing layer image transform"

Merged Miłosz Grocholewski requested to merge feat/MIN-91-editing-layer-image-transform into development
1 file
+ 0
2
Compare changes
  • Side-by-side
  • Inline
@@ -161,7 +161,6 @@ export const addLayerImageObject = createAsyncThunk<
@@ -161,7 +161,6 @@ export const addLayerImageObject = createAsyncThunk<
glyph: number | null;
glyph: number | null;
},
},
ThunkConfig
ThunkConfig
// eslint-disable-next-line consistent-return
>('vectorMap/addLayerImageObject', async ({ modelId, layerId, x, y, z, width, height, glyph }) => {
>('vectorMap/addLayerImageObject', async ({ modelId, layerId, x, y, z, width, height, glyph }) => {
try {
try {
const { data } = await axiosInstanceNewAPI.post<LayerImage>(
const { data } = await axiosInstanceNewAPI.post<LayerImage>(
@@ -197,7 +196,6 @@ export const updateLayerImageObject = createAsyncThunk<
@@ -197,7 +196,6 @@ export const updateLayerImageObject = createAsyncThunk<
glyph: number | null;
glyph: number | null;
},
},
ThunkConfig
ThunkConfig
// eslint-disable-next-line consistent-return
>(
>(
'vectorMap/updateLayerImageObject',
'vectorMap/updateLayerImageObject',
async ({ modelId, layerId, id, x, y, z, width, height, glyph }) => {
async ({ modelId, layerId, id, x, y, z, width, height, glyph }) => {
Loading