Skip to content

Commit 919dc34

Browse files
committed
Removed id column from workflows list; changed columns width
1 parent cb49fb8 commit 919dc34

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/lib/components/v2/projects/ProjectDatasetsList.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<table class="table align-middle">
8484
<thead class="table-light">
8585
<tr>
86-
<th class="col-md-6 col-lg-8">Name</th>
86+
<th class="col-7 col-lg-8">Name</th>
8787
<th>Options</th>
8888
</tr>
8989
</thead>

src/lib/components/v2/projects/ProjectsList.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,20 +129,20 @@
129129
<table class="table table-hover align-middle">
130130
<thead class="table-light">
131131
<tr>
132-
<th>Name</th>
132+
<th class="col-7 col-lg-8">Name</th>
133133
<th>Options</th>
134134
</tr>
135135
</thead>
136136
<tbody>
137137
{#key projects}
138138
{#each filteredProjects as { id, name }}
139139
<tr>
140-
<td class="col-6">
140+
<td>
141141
<a href={'/v2/projects/' + id}>
142142
{name}
143143
</a>
144144
</td>
145-
<td class="col-4">
145+
<td>
146146
<button
147147
class="btn btn-light"
148148
data-bs-toggle="modal"

src/lib/components/v2/projects/WorkflowsList.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,14 @@
9393
<table class="table align-middle caption-top">
9494
<thead class="table-light">
9595
<tr>
96-
<th class="col-4">Id</th>
97-
<th class="col-4">Name</th>
96+
<th class="col-7 col-lg-8">Name</th>
9897
<th>Options</th>
9998
</tr>
10099
</thead>
101100
<tbody>
102101
{#key workflows}
103102
{#each filteredWorkflows as { id, name }}
104103
<tr>
105-
<td>{id}</td>
106104
<td>
107105
<a href="/v2/projects/{projectId}/workflows/{id}">
108106
{name}

0 commit comments

Comments
 (0)