Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Digital course file
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
SE-PROJECT-TEAM
Digital course file
Merge requests
!42
FolderContextMenu
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
FolderContextMenu
FolderContextMenu
into
master
Overview
0
Commits
1
Pipelines
0
Changes
5
Closed
Nidharshan A
requested to merge
FolderContextMenu
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
Right Click Menu.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
feb20daf
1 commit,
4 years ago
5 files
+
20982
−
121
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
digital-course-file/src/user/File.js deleted
100644 → 0
+
0
−
16
Options
import
{
faFile
}
from
"
@fortawesome/free-solid-svg-icons
"
import
{
FontAwesomeIcon
}
from
"
@fortawesome/react-fontawesome
"
import
React
from
"
react
"
export
default
function
File
({
file
})
{
return
(
<
a
href
=
{
file
.
url
}
target
=
"
_blank
"
className
=
"
btn btn-outline-dark text-truncate w-100
"
>
<
FontAwesomeIcon
icon
=
{
faFile
}
className
=
"
mr-2
"
/>
{
file
.
name
}
<
/a
>
)
}
Loading