Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-26 15:10:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-26 15:10:08 +0300
commitc4af99d56fdef59d1da557d88a334f52e7531eb3 (patch)
tree10425fe4cbe9ceff8f567c5e1ebb0eea125afdd4 /doc/development/fe_guide
parentec3483bd1831dfca0c7baec0f8aad9079d28907d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/fe_guide')
-rw-r--r--doc/development/fe_guide/haml.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/haml.md b/doc/development/fe_guide/haml.md
index eaf475a35b6..8f501007755 100644
--- a/doc/development/fe_guide/haml.md
+++ b/doc/development/fe_guide/haml.md
@@ -31,7 +31,7 @@ For example:
- Before:
```haml
- = gitlab_ui_form_for @group do |f|
+ = form_for @group do |f|
.form-group.gl-mb-3
.gl-form-checkbox.custom-control.custom-checkbox
= f.check_box :prevent_sharing_groups_outside_hierarchy, disabled: !can_change_prevent_sharing_groups_outside_hierarchy?(@group), class: 'custom-control-input'