Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
ui_suite_dsfr
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
ui_suite_dsfr
Merge requests
!127
Issue
#3488134
: Add type="button" to action buttons
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3488134
: Add type="button" to action buttons
issue/ui_suite_dsfr-3488134:3488134-add-typebutton-to
into
1.1.x
Overview
0
Commits
4
Pipelines
6
Changes
16
Merged
Sourav Paul
requested to merge
issue/ui_suite_dsfr-3488134:3488134-add-typebutton-to
into
1.1.x
6 months ago
Overview
0
Commits
4
Pipelines
6
Changes
16
Expand
Closes
#3488134
0
0
Merge request reports
Compare
1.1.x
version 5
e3b905b9
5 months ago
version 4
fd6f31a9
5 months ago
version 3
f9be9676
5 months ago
version 2
7f19c94f
5 months ago
version 1
81032f32
6 months ago
1.1.x (base)
and
latest version
latest version
8526538a
4 commits,
5 months ago
version 5
e3b905b9
4 commits,
5 months ago
version 4
fd6f31a9
3 commits,
5 months ago
version 3
f9be9676
2 commits,
5 months ago
version 2
7f19c94f
1 commit,
5 months ago
version 1
81032f32
1 commit,
6 months ago
16 files
+
25
−
21
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
components/alert/alert.twig
+
1
−
1
Options
@@ -12,6 +12,6 @@
{{
message
}}
{%
if
dismissible
%}
{%
set
close_title
=
close_title
|
default
(
'Close'
|
t
)
%}
<button
{%
if
dismissible
==
'core'
%}
onclick=
"const alert = this.parentNode; alert.parentNode.removeChild(alert);"
{%
endif
%}
class=
"fr-btn fr-btn--close"
title=
"
{{
close_title
}}
"
>
{{
close_title
}}
</button>
<button
{%
if
dismissible
==
'core'
%}
onclick=
"const alert = this.parentNode; alert.parentNode.removeChild(alert);"
{%
endif
%}
class=
"fr-btn fr-btn--close"
title=
"
{{
close_title
}}
"
type=
"button"
>
{{
close_title
}}
</button>
{%
endif
%}
</div>
Loading