Skip to content

Commit

Permalink
feat: Increase characters limit for saved session name
Browse files Browse the repository at this point in the history
  • Loading branch information
navorite committed Mar 21, 2024
1 parent 857d279 commit 72d01e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/modals/InputModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

export let value = '';

export let minlength = 3;
export let maxlength = 40;
export let minlength = 1;
export let maxlength = 120;

let disabled = true;
let errMsg = '';
Expand Down

0 comments on commit 72d01e2

Please sign in to comment.