diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx
index 41b0e4cb9..a4bc5ab98 100644
--- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx
+++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx
@@ -1166,50 +1166,54 @@ export default function ProcessInstanceListTable({
reportColumnLabel = `${reportColumnLabel}=${reportColumnForEditing.filter_field_value}`;
}
tags.push(
-
-
-
+
+
+
+
+
);
});
return (
-
+
{tags}
-
+
+
+
);
}
return null;
@@ -1655,7 +1659,7 @@ export default function ProcessInstanceListTable({
return (
// eslint-disable-next-line react/jsx-props-no-spreading
-
+
{headers.map((header: any) => (
@@ -1781,7 +1785,7 @@ export default function ProcessInstanceListTable({
{processInstanceReportSaveTag()}
{tableTitleLine()}
-
+
-
+
{resultsTable}
diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx
index f0ec747d5..5594f1308 100644
--- a/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx
+++ b/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx
@@ -285,6 +285,7 @@ export default function ProcessInstanceLogList({
timestampComponent = (
span {
+ display: flex;
+ flex-direction: row;
+ width: 100%;
+}
+
+.filter-tag > span > span {
+ margin-right: 0.5px;
+}
+
+.cds--btn--ghost.cds--btn--sm.button-tag {
+ padding-left: 0;
+ padding-right: 0;
+ padding-top: 0;
+ flex-grow: 1;
+}
+
.cds--btn--ghost.cds--btn--sm.button-tag-icon {
padding-left: 0;
padding-right: 0;
@@ -615,3 +638,4 @@ hr {
#hidden-form-for-autosave {
display: none;
}
+
diff --git a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx
index 4b393fbb1..d57f80d5c 100644
--- a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx
+++ b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx
@@ -312,14 +312,10 @@ export default function ProcessInstanceShow({ variant }: OwnProps) {
lastUpdatedTime = processInstance.end_in_seconds;
}
const lastUpdatedTimeTag = (
-
-
- {lastUpdatedTimeLabel}:{' '}
-
-
- {convertSecondsToFormattedDateTime(lastUpdatedTime || 0) || 'N/A'}
-
-
+
+ - {lastUpdatedTimeLabel}:
+ - {convertSecondsToFormattedDateTime(lastUpdatedTime || 0) || 'N/A'}
+
);
let statusIcon = ;
@@ -337,83 +333,61 @@ export default function ProcessInstanceShow({ variant }: OwnProps) {
}
return (
- <>
-
-
- Status:{' '}
-
-
-
- {processInstance.status} {statusIcon}
-
-
-
-
-
- Started By:{' '}
-
-
- {processInstance.process_initiator_username}
-
-
- {processInstance.process_model_with_diagram_identifier ? (
-
-
- Current Diagram:{' '}
-
-
-
- {processInstance.process_model_with_diagram_identifier}
-
-
-
- ) : null}
-
-
- Started:{' '}
-
-
- {convertSecondsToFormattedDateTime(
- processInstance.start_in_seconds || 0
- )}
-
-
- {lastUpdatedTimeTag}
-
-
- Process model revision:{' '}
-
-
- {processInstance.bpmn_version_control_identifier} (
- {processInstance.bpmn_version_control_type})
-
-
- {(processInstance.process_metadata || []).map(
- (processInstanceMetadata) => (
-
-
- {processInstanceMetadata.key}:
-
-
- {processInstanceMetadata.value}
-
-
- )
- )}
- >
+
+
+
+ - Status:
+ -
+
+ {processInstance.status} {statusIcon}
+
+
+
+
+ - Started By:
+ - {processInstance.process_initiator_username}
+
+ {processInstance.process_model_with_diagram_identifier ? (
+
+ - Current Diagram:
+ -
+
+ {processInstance.process_model_with_diagram_identifier}
+
+
+
+ ) : null}
+
+ - Started:
+ -
+ {convertSecondsToFormattedDateTime(
+ processInstance.start_in_seconds || 0
+ )}
+
+
+ {lastUpdatedTimeTag}
+
+ - Revision:
+ - {processInstance.bpmn_version_control_identifier} (
+ {processInstance.bpmn_version_control_type})
+
+
+
+ {(processInstance.process_metadata || []).map(
+ (processInstanceMetadata) => (
+
+ - {processInstanceMetadata.key} :
+ - {processInstanceMetadata.value}
+
+ )
+ )}
+
+
);
};
|