Merge pull request #5 from netSkope/pr/EP-42367/remove-spaces

EP-42367: removed spaces and footer development version and removed action push
This commit is contained in:
Suhal Vemu 2024-04-17 08:50:41 +05:30 committed by GitHub
commit 52ec112664
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 10 deletions

View File

@ -88,7 +88,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
if (this.status === 200) {
let repositories_1 = JSON.parse(this.responseText).repositories || [];
for (let i = 0; i < repositories_1.length; i++){
if (!repositories_1[i].includes("unlabeled")){
if (!repositories_1[i].includes("unlabeled") && !repositories_1[i].includes("action-push")){
repositories.push(repositories_1[i])
}
}

View File

@ -111,9 +111,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<footer>
<material-footer mini="true">
<a class="material-footer-logo" href="https://joxit.github.io/docker-registry-ui/">
Docker Registry UI { version }
Docker Registry UI
</a>
<ul>
<li>
<a href="https://github.com/Joxit/docker-registry-ui">Contribute on GitHub</a>
</li>
<li>
<a href="https://github.com/Joxit/docker-registry-ui/blob/main/LICENSE">License AGPL-3.0</a>
</li>
<li if="{ props.theme === 'auto' || props.theme === '' }">
<material-switch
on-change="{ onThemeChange }"

View File

@ -27,7 +27,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
on-image-deleted="{ props.onImageDeleted }"
></confirm-delete-image>
<material-card class="taglist">
<table style="border: none">
<table style="border: none; table-layout: fixed; width: 100%;"">
<col style="width: 25%" />
<col style="width: 25%" />
<col style="width: 25%" />
<col style="width: 25%" />
<thead>
<tr>
<th
@ -38,14 +42,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
Tag
</th>
<th
class="image-size { state.sizeClicked ?((state.desc && state.orderType === 'size') ? 'material-card-th-sorted-descending' : 'material-card-th-sorted-ascending'):'' }"
onclick="{() => onPageReorder('size') }"
>
<th>
Size
</th>
<th id="image-content-digest-header" if="{ props.showContentDigest }">Content Digest</th>
<!-- <th id="image-content-digest-header" if="{ props.showContentDigest }">Content Digest</th> -->
<th class="architectures">Arch</th>
<th class="show-tag-history">History</th>
<th
@ -89,7 +90,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<td class="image-size">
<image-size image="{ image }"></image-size>
</td>
<td if="{ props.showContentDigest }">
<!--<td if="{ props.showContentDigest }">
<image-content-digest image="{ image }"></image-content-digest>
<copy-to-clipboard
target="digest"
@ -97,7 +98,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
pull-url="{ props.pullUrl }"
on-notify="{ props.onNotify }"
></copy-to-clipboard>
</td>
</td> -->
<td class="architectures">
<architectures image="{ image }"></architectures>
</td>