Skip to content

Commit

Permalink
Backport 2024.7.0 to develop (#333)
Browse files Browse the repository at this point in the history
* Set proper project version type in flask cmd

* fix spelling of template

* Remove pretty text wrap froom span

---------

Co-authored-by: Martin Varga <[email protected]>
  • Loading branch information
MarcelGeo and varmar05 authored Nov 19, 2024
1 parent dabd132 commit 87f9c29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/mergin/sync/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def create(name, namespace, user): # pylint: disable=W0612

@project.command()
@click.argument("project-name")
@click.option("--version", required=True)
@click.option("--version", type=int, required=True)
@click.option("--directory", type=click.Path(), required=True)
def download(project_name, version, directory): # pylint: disable=W0612
"""Download files for project at particular version"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-MerginMaps-Commercial
:sortable="header.sortable"
>
<template #body="slotProps">
<templte v-if="slotProps.data.removed_at">{{
<template v-if="slotProps.data.removed_at">{{
slotProps.data.name
}}</templte>
}}</template>
<router-link
v-else
:to="{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ body, p, dd, dl {
}
p, span, dl, li {
overflow-wrap: break-word;
}
p, dl, li {
overflow-wrap: break-word;
text-wrap: pretty;
}
dd {
Expand Down

0 comments on commit 87f9c29

Please sign in to comment.