Skip to content

Commit

Permalink
Fix creating storage with empty title (#1318)
Browse files Browse the repository at this point in the history
  • Loading branch information
triklozoid authored Aug 18, 2021
1 parent 0645525 commit 2a1bf9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion label_studio/io_storages/base_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class Storage(models.Model):
title = models.CharField(
_('title'), null=True, max_length=256,
_('title'), null=True, blank=True, max_length=256,
help_text='Cloud storage title')
description = models.TextField(
_('description'), null=True, blank=True,
Expand Down

0 comments on commit 2a1bf9f

Please sign in to comment.