Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bsp-usecase-wizard
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cls
bsp-usecase-wizard
Merge requests
!29
Update packages to latest
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Update packages to latest
update-pkgs
into
main
Overview
1
Commits
10
Pipelines
0
Changes
11
Open
Stefano Antonel
requested to merge
update-pkgs
into
main
3 years ago
Overview
1
Commits
10
Pipelines
0
Changes
11
Expand
Created by: stefanoantonel
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e5dbfad0
10 commits,
2 years ago
11 files
+
24392
−
39
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
src/components/CollabSelection.svelte
+
3
−
3
Options
@@ -127,7 +127,7 @@
helperLine
$
style=
"width: 100%;"
label=
"Collab Name"
bind:value=
{
searchText
}
on:
change
=
{
filterCollab
}
on:
input
=
{
filterCollab
}
>
<Icon
class=
"material-icons"
slot=
"trailingIcon"
>
search
</Icon>
</Textfield>
@@ -156,7 +156,7 @@
<div
class=
"last-used-collab"
>
{
#if
lastUsedCollabName
}
<Item
on:click=
{
collabSelected
(
lastUsedCollabName
)
}
>
<Item
on:click=
{
()
=>
collabSelected
(
lastUsedCollabName
)
}
>
<Text><strong>
Last used:
</strong>
{
lastUsedCollabName
}
</Text>
</Item>
{
/if
}
@@ -168,7 +168,7 @@
<div
class=
"collab-list-scroll"
>
<List>
{
#each
filteredCollabsNames
as
collabName
}
<Item
on:click=
{
collabSelected
(
collabName
)
}
>
<Item
on:click=
{
()
=>
collabSelected
(
collabName
)
}
>
<Text>
{
collabName
}
</Text>
</Item>
{
/each
}