Skip to content

Commit

Permalink
Fixed tag input being too small and unable to fit a CIDR (#483)
Browse files Browse the repository at this point in the history
Co-authored-by: 0xCA <undefined>
  • Loading branch information
0xCA authored Dec 25, 2023
1 parent c862308 commit 47fac2b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ <h1>{{template "page_title" .}}</h1>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand All @@ -508,6 +509,7 @@ <h1>{{template "page_title" .}}</h1>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand All @@ -518,6 +520,7 @@ <h1>{{template "page_title" .}}</h1>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand Down
3 changes: 3 additions & 0 deletions templates/clients.html
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ <h4 class="modal-title">Remove</h4>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand All @@ -438,6 +439,7 @@ <h4 class="modal-title">Remove</h4>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand All @@ -448,6 +450,7 @@ <h4 class="modal-title">Remove</h4>
'defaultText': 'Add More',
'removeWithBackspace' : true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
})

Expand Down
1 change: 1 addition & 0 deletions templates/global_settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ <h4 class="modal-title">Endpoint Address Suggestion</h4>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand Down
1 change: 1 addition & 0 deletions templates/server.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ <h4 class="modal-title">KeyPair Generation</h4>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

Expand Down

0 comments on commit 47fac2b

Please sign in to comment.