Skip to content

Commit 374ea74

Browse files
committed
Removed id from project table and removed project page breadcrumb
1 parent 617e10a commit 374ea74

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

src/lib/components/projects/ProjectsList.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@
124124
<table class="table table-hover align-middle">
125125
<thead class="table-light">
126126
<tr>
127-
<th>Id</th>
128127
<th>Name</th>
129128
<th>Options</th>
130129
</tr>
@@ -133,7 +132,6 @@
133132
{#key projects}
134133
{#each filteredProjects as { id, name }}
135134
<tr>
136-
<td class="col-2">{id}</td>
137135
<td class="col-6">{name}</td>
138136
<td class="col-4">
139137
<button

src/routes/projects/+page.svelte

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,5 @@
77
const projects = $page.data.projects;
88
</script>
99

10-
<nav aria-label="breadcrumb">
11-
<ol class="breadcrumb">
12-
<li class="breadcrumb-item active" aria-current="page">Projects</li>
13-
</ol>
14-
</nav>
15-
16-
<div class="container">
17-
<ProjectsList {projects} />
18-
<ProjectInfoModal />
19-
</div>
10+
<ProjectsList {projects} />
11+
<ProjectInfoModal />

0 commit comments

Comments
 (0)