[info=cad7a00b2d063e504b2379004fa346cf304e0f644342501396b2e7ef4b6c2064]

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:cockpit/cockpit-podman?expand=0&rev=57
This commit is contained in:
OBS User unknown 2024-11-05 13:58:04 +00:00 committed by Git OBS Bridge
parent e9167ab307
commit ef2b694dc4
5 changed files with 22 additions and 4 deletions

View File

@ -1,4 +1,4 @@
mtime: 1723479196
commit: 68fb781e8880e1f3a1ddc534a8714e526582eeda724ee2a76051ce7610566f65
mtime: 1730813965
commit: cad7a00b2d063e504b2379004fa346cf304e0f644342501396b2e7ef4b6c2064
url: https://src.opensuse.org/cockpit/cockpit-podman.git
revision: 68fb781e8880e1f3a1ddc534a8714e526582eeda724ee2a76051ce7610566f65
revision: cad7a00b2d063e504b2379004fa346cf304e0f644342501396b2e7ef4b6c2064

BIN
build.specials.obscpio (Stored with Git LFS)

Binary file not shown.

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Nov 5 13:02:39 UTC 2024 - Alice Brooks <alice.brooks@suse.com>
- correct-container-search.patch: Fixes issues searching containers
bsc#1232687
-------------------------------------------------------------------
Fri Aug 9 17:49:45 UTC 2024 - Herbert Graeber <herbert@graeber-clan.de>

View File

@ -28,6 +28,7 @@ Source11: node_modules.spec.inc
Source12: update_version.sh
%include %_sourcedir/node_modules.spec.inc
Patch10: load-css-overrides.patch
Patch11: correct-container-search.patch
BuildArch: noarch
BuildRequires: appstream-glib
Requires: cockpit-bridge >= 138

View File

@ -0,0 +1,11 @@
--- a/src/ImageRunModal.jsx
+++ b/src/ImageRunModal.jsx
@@ -516,7 +516,7 @@ export class ImageRunModal extends React.Component {
}
// Strip out all non-allowed container image characters when filtering.
- let regexString = searchText.replace(/[^\w_.:-]/g, "");
+ let regexString = searchText.replace(/[^/\w_.:-]/g, "");
// Strip image registry option if set for comparing results for docker.io searching for docker.io/fedora
// returns docker.io/$username/fedora for example.
if (regexString.includes('/')) {