Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Maka
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Onboarding
AlekSIS-App-Maka
Merge requests
!3
Draft: Resolve "Implement shared secret mechanism"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Resolve "Implement shared secret mechanism"
2-implement-shared-secret-mechanism
into
main
Overview
4
Commits
43
Pipelines
0
Changes
28
Closed
Hangzhi Yu
requested to merge
2-implement-shared-secret-mechanism
into
main
7 months ago
Overview
4
Commits
43
Pipelines
0
Changes
28
Expand
Closes
#2 (closed)
0
0
Merge request reports
Compare
main
version 15
ca035885
7 months ago
version 14
f0300efd
7 months ago
version 13
d9fe93fa
7 months ago
version 12
2558d470
7 months ago
version 11
f5ca4181
7 months ago
version 10
73680ae9
7 months ago
version 9
20b3b9c6
7 months ago
version 8
7b7c9308
7 months ago
version 7
a3dcc02a
7 months ago
version 6
c623d2b8
7 months ago
version 5
915bd460
7 months ago
version 4
31d8c91b
7 months ago
version 3
c47b8849
7 months ago
version 2
64a496df
7 months ago
version 1
ea5a6e8e
7 months ago
main (base)
and
latest version
latest version
ca035885
43 commits,
7 months ago
version 15
ca035885
49 commits,
7 months ago
version 14
f0300efd
48 commits,
7 months ago
version 13
d9fe93fa
48 commits,
7 months ago
version 12
2558d470
47 commits,
7 months ago
version 11
f5ca4181
45 commits,
7 months ago
version 10
73680ae9
44 commits,
7 months ago
version 9
20b3b9c6
43 commits,
7 months ago
version 8
7b7c9308
43 commits,
7 months ago
version 7
a3dcc02a
11 commits,
7 months ago
version 6
c623d2b8
9 commits,
7 months ago
version 5
915bd460
8 commits,
7 months ago
version 4
31d8c91b
7 commits,
7 months ago
version 3
c47b8849
7 commits,
7 months ago
version 2
64a496df
7 commits,
7 months ago
version 1
ea5a6e8e
7 commits,
7 months ago
28 files
+
1551
−
91
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
28
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/maka/frontend/components/effort_types/EffortTypeChip.vue
0 → 100644
+
29
−
0
Options
<
script
>
export
default
{
name
:
"
EffortTypeChip
"
,
props
:
{
effortType
:
{
type
:
Object
,
required
:
true
,
},
},
}
</
script
>
<
template
>
<v-chip
outlined
:color=
"effortType.color"
v-bind=
"$attrs"
v-on=
"$listeners"
>
<v-icon
left
v-if=
"effortType.icon"
>
{{
effortType
.
icon
}}
</v-icon>
{{
effortType
.
name
}}
</v-chip>
</
template
>
<
style
scoped
>
</
style
>
\ No newline at end of file
Loading