Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
epoc-editor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
learninglab
epoc
epoc-editor
Merge requests
!43
V1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
V1
v1
into
main
Overview
0
Commits
19
Pipelines
10
Changes
48
Merged
VIAUD Nathan
requested to merge
v1
into
main
2 years ago
Overview
0
Commits
19
Pipelines
10
Changes
48
Expand
0
0
Merge request reports
Compare
main
version 21
d0312b36
2 years ago
version 20
925aae24
2 years ago
version 19
9091c094
2 years ago
version 18
1a891b80
2 years ago
version 17
8dcf3493
2 years ago
version 16
b276007b
2 years ago
version 15
55e326f5
2 years ago
version 14
237f8760
2 years ago
version 13
4e8b4a46
2 years ago
version 12
fbc70f22
2 years ago
version 11
679071d4
2 years ago
version 10
a3ac4499
2 years ago
version 9
f39b1f2d
2 years ago
version 8
a13e331e
2 years ago
version 7
f5bddff9
2 years ago
version 6
edb6593f
2 years ago
version 5
06e6507d
2 years ago
version 4
97521c46
2 years ago
version 3
09d83248
2 years ago
version 2
dec7fa1c
2 years ago
version 1
c446f3ee
2 years ago
main (base)
and
latest version
latest version
9dcdc70f
19 commits,
2 years ago
version 21
d0312b36
18 commits,
2 years ago
version 20
925aae24
17 commits,
2 years ago
version 19
9091c094
16 commits,
2 years ago
version 18
1a891b80
15 commits,
2 years ago
version 17
8dcf3493
16 commits,
2 years ago
version 16
b276007b
15 commits,
2 years ago
version 15
55e326f5
14 commits,
2 years ago
version 14
237f8760
13 commits,
2 years ago
version 13
4e8b4a46
12 commits,
2 years ago
version 12
fbc70f22
11 commits,
2 years ago
version 11
679071d4
10 commits,
2 years ago
version 10
a3ac4499
10 commits,
2 years ago
version 9
f39b1f2d
9 commits,
2 years ago
version 8
a13e331e
10 commits,
2 years ago
version 7
f5bddff9
9 commits,
2 years ago
version 6
edb6593f
8 commits,
2 years ago
version 5
06e6507d
8 commits,
2 years ago
version 4
97521c46
7 commits,
2 years ago
version 3
09d83248
6 commits,
2 years ago
version 2
dec7fa1c
2 commits,
2 years ago
version 1
c446f3ee
1 commit,
2 years ago
48 files
+
2281
−
1888
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
48
Search (e.g. *.vue) (Ctrl+P)
src/components/ContentButton.vue
+
4
−
5
Options
@@ -2,11 +2,10 @@
defineProps
<
{
icon
:
string
;
classList
:
object
;
isActive
:
boolean
;
isDraggable
:
boolean
;
classList
?:
object
;
subtitle
?:
string
;
is
Blu
e
?:
boolean
is
Activ
e
?:
boolean
;
}
>
();
const
emit
=
defineEmits
<
{
@@ -21,8 +20,8 @@ function click(event) {
<
template
>
<div
class=
"btn btn-content"
:class=
"[classList,
{
active: isActive }, {
'draggable': isDraggable }, { '
btn-content-blu
e': is
Blu
e }]"
:draggable="isDraggable"
:class=
"[classList,
{ 'draggable': isDraggable }, { '
activ
e': is
Activ
e }]"
:draggable="isDraggable"
@click.stop="click($event)"
>
<i
:class=
"icon"
/>
Loading