Skip to content

Commit

Permalink
Fixed tag input being too small and unable to fit a CIDR (#509)
Browse files Browse the repository at this point in the history
Co-authored-by: 0xCA <undefined>
  • Loading branch information
0xCA authored Dec 28, 2023
1 parent 867aa13 commit 841db62
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 @@ -548,6 +548,7 @@ <h1>{{template "page_title" .}}</h1>
'defaultText': 'Add More',
'removeWithBackspace': true,
'minChars': 0,
'minInputWidth': '100%',
'placeholderColor': '#666666'
});

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

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

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

Expand All @@ -555,6 +557,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 841db62

Please sign in to comment.