Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Fix: Now Confirming a file is possible in admin page without selectin…
Browse files Browse the repository at this point in the history
…g a tag
  • Loading branch information
MeisterSeSe committed Nov 13, 2023
1 parent f38d820 commit 61b654d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/core/fileupload/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class File(models.Model):
local_file = models.FileField(upload_to=relative_upload_dir)
uploaded_at = models.DateTimeField(auto_now_add=True)
license = models.ForeignKey(License, on_delete=models.CASCADE)
tags = models.ManyToManyField(Tag)
tags = models.ManyToManyField(Tag, blank=True)
version = models.CharField(blank=True, null=True, max_length=16)
transpiled_file = models.FileField(
null=True, blank=True, upload_to=relative_upload_dir
Expand Down

0 comments on commit 61b654d

Please sign in to comment.