Skip to content

Commit

Permalink
Lift length restriction for external link descriptions
Browse files Browse the repository at this point in the history
With bigger cards it makes sense to allow longer texts.

REDMINE-20852
  • Loading branch information
tf committed Nov 19, 2024
1 parent 916869d commit 99ab2a5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ export const SidebarEditLinkView = Marionette.Layout.extend({
this.input('title', TextInputView, {
required: true
});
this.input('description', TextInputView);
this.input('description', TextInputView, {
maxLength: 10000
});
});
this.formContainer.show(configurationEditor);
},
Expand Down

0 comments on commit 99ab2a5

Please sign in to comment.