Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Hironsan committed Jul 11, 2022
2 parents ea1908e + 6074509 commit 28f0d86
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docker/docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ services:
build:
context: ..
dockerfile: docker/Dockerfile.nginx
image: doccano_nginx:prod
environment:
API_URL: "http://backend:8000"
GOOGLE_TRACKING_ID: ""
Expand Down
2 changes: 1 addition & 1 deletion frontend/i18n/de/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
},
uploadFileRules: {
fileRequired: 'Datei(en) werden benötigt',
fileLessThan1MB: 'Dateigröße muss kleiner als 1 MB sein!'
fileLessThan1MB: 'Dateigröße muss kleiner als 100 MB sein!'
},
passwordRules: {
passwordRequired: 'Passwort wird benötigt',
Expand Down
2 changes: 1 addition & 1 deletion frontend/i18n/fr/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
},
uploadFileRules: {
fileRequired: 'Le fichier est obligatoire',
fileLessThan1MB: 'La taille du fichier doit être inférieure à 1MB'
fileLessThan1MB: 'La taille du fichier doit être inférieure à 100 MB'
},
passwordRules: {
passwordRequired: 'Le mot de passe est obligatoire',
Expand Down
2 changes: 1 addition & 1 deletion frontend/i18n/zh/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default {
},
uploadFileRules: {
fileRequired: '请输入文件',
fileLessThan1MB: '文件大小必须小于 1 MB!'
fileLessThan1MB: '文件大小必须小于 100 MB!'
},
passwordRules: {
passwordRequired: '请输入密码',
Expand Down
2 changes: 1 addition & 1 deletion frontend/pages/projects/_id/sequence-labeling/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default {
this.$route.query.isChecked
)
const doc = this.docs.items[0]
if (this.enableAutoLabeling) {
if (this.enableAutoLabeling && !doc.isConfirmed) {
await this.autoLabel(doc.id)
}
await this.list(doc.id)
Expand Down

0 comments on commit 28f0d86

Please sign in to comment.