This is an automated email from the ASF dual-hosted git repository.
afs pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git
The following commit(s) were added to refs/heads/main by this push:
new c7a21b1098 GH-1467 Use a dashed 'primary' color instead of 'warning'
during file upload in fuseki
c7a21b1098 is described below
commit c7a21b1098a4b5c9db96da035e4c24e59f48ade5
Author: Thomas Thelen <[email protected]>
AuthorDate: Wed Jun 24 12:20:08 2026 -0700
GH-1467 Use a dashed 'primary' color instead of 'warning' during file
upload in fuseki
---
jena-fuseki2/jena-fuseki-ui/src/views/dataset/Upload.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/jena-fuseki2/jena-fuseki-ui/src/views/dataset/Upload.vue
b/jena-fuseki2/jena-fuseki-ui/src/views/dataset/Upload.vue
index 2fb2a1e4fe..95adc97cf8 100644
--- a/jena-fuseki2/jena-fuseki-ui/src/views/dataset/Upload.vue
+++ b/jena-fuseki2/jena-fuseki-ui/src/views/dataset/Upload.vue
@@ -167,7 +167,7 @@
<template #cell(status)="data">
<div class="progress">
<div
- :class="`progress-bar bg-${getFileStatus(data.item)}`"
+ :class="['progress-bar',
`bg-${getFileStatus(data.item)}`, { 'progress-bar-striped': data.item.active,
'progress-bar-animated': data.item.active }]"
:style="`width: ${data.item.progress}%`"
:aria-valuenow="`${data.item.progress}`"
aria-valuemin="0"
@@ -384,7 +384,7 @@ export default {
return 'success'
}
if (file.active) {
- return 'warning'
+ return 'primary'
}
return ''
},