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 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