@provoly/dashboard 0.25.8 → 0.25.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2206,6 +2206,7 @@ const enTranslations = {
2206
2206
  INACTIVE: 'Invalid',
2207
2207
  ERROR: 'Error',
2208
2208
  ACTIVE: 'Available',
2209
+ DELETING: 'Deleting',
2209
2210
  currentlyActive: 'Active',
2210
2211
  delete: {
2211
2212
  title: 'Delete version',
@@ -2293,6 +2294,7 @@ const frTranslations = {
2293
2294
  INACTIVE: 'Invalide',
2294
2295
  ERROR: 'En erreur',
2295
2296
  ACTIVE: 'Disponible',
2297
+ DELETING: 'En cours de suppression',
2296
2298
  currentlyActive: 'Actif',
2297
2299
  delete: {
2298
2300
  title: 'Supprimer une version',
@@ -12163,9 +12165,9 @@ const internalReducer = createReducer(dashboardInitialState, on(DashboardActions
12163
12165
  layerGroups: [
12164
12166
  ...(state.manifests.manifest.layerGroups ?? []),
12165
12167
  {
12166
- name: action.defaultTitle + ' ' + ((state.manifests.manifest.layerGroups?.length ?? 0) + 1).toString(),
12167
- singleLayer: false,
12168
- visibleLayers: []
12168
+ name: action.name ?? 'MISSING NAME',
12169
+ singleLayer: action.singleLayer ?? false,
12170
+ visibleLayers: action.visibleLayers ?? []
12169
12171
  }
12170
12172
  ]
12171
12173
  }