Skip to content

Commit

Permalink
Merge pull request #3406 from nihar1024/main
Browse files Browse the repository at this point in the history
fix: update docs social card
  • Loading branch information
majkshkurti authored Jan 31, 2025
2 parents 97560d7 + 3586bc6 commit e8d5952
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
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

0 comments on commit e8d5952

Please sign in to comment.