This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git
The following commit(s) were added to refs/heads/master by this push:
new da49df92a9 [FELIX-6715] Fix double slash in bundle link (#325)
da49df92a9 is described below
commit da49df92a9b19075751f7f92ca4aac573a00af6c
Author: Konrad Windszus <[email protected]>
AuthorDate: Sat Jul 6 16:36:21 2024 +0200
[FELIX-6715] Fix double slash in bundle link (#325)
---
webconsole/src/main/resources/res/ui/services.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/webconsole/src/main/resources/res/ui/services.js
b/webconsole/src/main/resources/res/ui/services.js
index e1b65c0c24..452bc9a9be 100644
--- a/webconsole/src/main/resources/res/ui/services.js
+++ b/webconsole/src/main/resources/res/ui/services.js
@@ -136,7 +136,7 @@ function renderUsingBundlesAsTable(/* Object[] */ bundles) {
for (var idx in bundles) {
var bundle = bundles[idx];
- txt += '<a href="' + bundlePath + '/' + bundle.bundleId + '">'
+ txt += '<a href="' + bundlePath + bundle.bundleId + '">'
+ bundle.bundleSymbolicName + ' (' + bundle.bundleId + ')'
+ '</a><br/>';
}