Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • DOS99492_TAC
  • Sollicit_10-02-2022
  • TACtest
  • development
  • display_data_map
  • download-tab
  • feature-329-consent
  • fix-issue-157
  • map_vector_source
  • master
  • mvt_with_wms_style
  • mwv_and_wms_together
  • opsec
  • patch-1
  • poc-oidc
  • poc_openlayers_wfs_wms
  • remote-openmaptiles
  • renovate/configure
  • ssr-wip
  • stream_wfs_map
  • us-256_documentation_poc
  • us-339-filter-map-search
  • us-446-message-banner
  • material-version
  • v2.0.0
  • v2.1.0
  • v2.1.1
  • v2.1.2
  • v2.1.3
  • v2.1.4
  • v2.1.5
  • v2.1.6
  • v2.1.7
  • v2.1.8
  • v2.1.9
  • v2.2.0
  • v2.3.0
  • v2.3.1
  • v2.3.2
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.6.0
  • v2.6.1
  • v2.6.10
  • v2.6.11
  • v2.6.12
  • v2.6.13
  • v2.6.14
  • v2.6.15
  • v2.6.16
  • v2.6.2
  • v2.6.3
  • v2.6.4
  • v2.6.5
  • v2.6.6
  • v2.6.7
  • v2.6.8
  • v2.6.9
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v2.7.5
  • v2.7.6
  • v2.7.7
  • v2.7.8
  • v2.7.9
  • v2.8.0
  • v2.8.1
  • v2.8.2
73 results

Target

Select target project
  • web-et-numerique/web-et-numerique-internet/data.grandlyon.com/web-portal/components/custom-apps/web-app
1 result
Select Git revision
Show changes
Commits on Source (11)
{
"name": "webapp",
"version": "2.6.7",
"version": "2.6.8",
"license": "GNU Affero General Public License v3.0",
"scripts": {
"ng": "ng",
......
......@@ -171,6 +171,14 @@ export class DatasetDetailService {
datasetChild.slug = child._source['slug'];
this._children.data.push(datasetChild);
});
// reorder children alphabetically
this._children.data.sort((a,b) => {
var child1 = a.slug.toUpperCase();
var child2 = b.slug.toUpperCase();
return (child1 < child2) ? -1 : (child1 > child2) ? 1 : 0;
});
return dataset;
}),
catchError((err) => {
......
......@@ -21,8 +21,8 @@
" © <a href='https://openmaptiles.org/' target='_blank' title='Allez sur le site OpenMapTiles (nouvelle fenêtre)'>OpenMapTiles</a> © <a href='https://www.openstreetmap.org/copyright' target='_blank' title='Allez sur le site OpenStreetMap (nouvelle fenêtre)'>OpenStreetMap contributors</a>"
}
},
"sprite": "https://minio.alpha.grandlyon.com/mapbox-assets/mapbox-sprite",
"glyphs": "https://minio.alpha.grandlyon.com/mapbox-glyphs/{fontstack}/{range}.pbf",
"sprite": "https://minio.data.beta.grandlyon.com/assets/mapbox-assets/mapbox-sprite",
"glyphs": "https://minio.data.beta.grandlyon.com/assets/mapbox-glyphs/{fontstack}/{range}.pbf",
"layers": [{
"id": "background",
"type": "background",
......