mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-22 06:44:55 +08:00
Fix description text area when creating a new team [SCI-9138]
This commit is contained in:
parent
f4c48fe907
commit
9f05f6d28b
1 changed files with 4 additions and 3 deletions
|
@ -6,19 +6,20 @@
|
|||
<div class="tab-pane content-pane" role="tabpanel"></div>
|
||||
<div class="tab-pane content-pane active" role="tabpanel">
|
||||
<%= form_with model: @new_team, url: create_team_path do |f| %>
|
||||
<div class="form-group sci-input-container" style="max-width: 500px;">
|
||||
<div class="sci-input-container mb-4 max-w-lg" style="display: block !important">
|
||||
<label><%= t('users.settings.teams.new.name_label') %></label>
|
||||
<%= f.text_field :name,
|
||||
autofocus: true,
|
||||
class: 'sci-input-field',
|
||||
placeholder: t('users.settings.teams.new.name_placeholder') %>
|
||||
<br>
|
||||
<small>
|
||||
<%=t 'users.settings.teams.new.name_sublabel' %>
|
||||
</small>
|
||||
</div>
|
||||
|
||||
<div class="form-group" style="max-width: 500px;">
|
||||
<%= f.text_area :description, label: t('users.settings.teams.new.description_label') %>
|
||||
<div class="sci-input-container mb-4 max-w-lg" style="display: block !important">
|
||||
<%= f.text_area :description, class: "sci-input-field textarea", label: t('users.settings.teams.new.description_label') %>
|
||||
<br>
|
||||
<small>
|
||||
<%=t 'users.settings.teams.new.description_sublabel' %>
|
||||
|
|
Loading…
Reference in a new issue