Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: "img/docusaurus-social-card.jpg",
image: "https://assets.plan4better.de/img/logo/goat_standard.svg",
navbar: {
logo: {
alt: "Plan4Better",
Expand Down
Binary file removed apps/docs/static/img/docusaurus-social-card.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion apps/routing/src/routing/crud/crud_catchment_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ async def save_result(self, obj_in, shapes, network, grid_index, grid):
FROM isochrones_with_id a
LEFT JOIN LATERAL
(
SELECT ST_DIFFERENCE(a.filled_geom, b.orig_geom) AS geom
SELECT ST_DIFFERENCE(a.filled_geom, b.filled_geom) AS geom
FROM isochrones_with_id b
WHERE a.id + 1 = b.id
) j ON {"TRUE" if obj_in.polygon_difference else "FALSE"};
Expand Down
Loading