Skip to content

Dan select component #1048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Oct 3, 2023
Prev Previous commit
Next Next commit
turn off auto complete on input header
  • Loading branch information
chillenberger committed Sep 25, 2023
commit 5335763d335e6f26e6413a028a49f75441abd467
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<%= value %>
</span>

<input type="text" class="form-control" value="<%= value %>" style="display: none" maxlength="50"
<input type="text" class="form-control" value="<%= value %>" style="display: none" maxlength="50" autocomplete="off"
name='<%= input_name.unwrap_or_else(|| "".to_string()) %>'
data-inputs-text-editable-header-target="input"
<%- input_target %> >
Expand Down