We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e76574e commit 8aa6b5dCopy full SHA for 8aa6b5d
src/store/editor.js
@@ -3,6 +3,7 @@ import Utils from '../utils';
3
import { Job, Service, UserProcess } from '@openeo/js-client';
4
import { ProcessGraph } from '@openeo/js-processgraphs';
5
import FormatRegistry from '../formats/formatRegistry.js';
6
+import StacMigrate from '@radiantearth/stac-migrate';
7
8
const serverStorage = "serverUrls";
9
@@ -157,6 +158,10 @@ export default {
157
158
};
159
},
160
setAppModeData(state, data) {
161
+ if (data.type) {
162
+ data = StacMigrate.stac(data, false);
163
+ }
164
+
165
Vue.set(state.appMode, 'data', data);
166
167
let process, title, expires;
0 commit comments