Skip to content

Commit

Permalink
Redeploy because of some minor interface and linting changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkoov committed Jan 20, 2024
1 parent 3af4b3a commit 18d5894
Show file tree
Hide file tree
Showing 6 changed files with 336 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ venv.bak/
.ruff_cache
.dmypy.json
dmypy.json
*.sh

# Pyre type checker
.pyre/
Expand Down
1 change: 1 addition & 0 deletions backend/.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ venv
.vscode
.env
db.sqlite3
.sh
2 changes: 1 addition & 1 deletion backend/api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class Task(models.Model):
title = models.CharField(verbose_name='Заголовок', max_length=120)
title = models.CharField(verbose_name="Header", max_length=120)
description = models.TextField()
completed = models.BooleanField(default=False)

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const App = () => {
<div className="card p-3">
<div className="mb-4">
<button className="btn btn-primary" onClick={createTask}>
Add task
Add a task
</button>
</div>
<TabList
Expand Down
Loading

0 comments on commit 18d5894

Please sign in to comment.