Merge remote-tracking branch 'origin/main' into feature/remove_spif_step_details

This commit is contained in:
jasquat 2023-03-20 12:13:39 -04:00
commit bf1ae79921
2 changed files with 9 additions and 3 deletions

View File

@ -732,6 +732,7 @@ export default function ProcessInstanceListTable({
setEndToTime('');
setProcessInitiatorSelection(null);
setProcessInitiatorText('');
setRequiresRefilter(true);
if (reportMetadata) {
reportMetadata.filter_by = [];
}
@ -1481,10 +1482,10 @@ export default function ProcessInstanceListTable({
let refilterTextComponent = null;
if (requiresRefilter) {
refilterTextComponent = (
<h2>
Please press the filter button when you have completed updating the
<p className="please-press-filter-button">
* Please press the filter button when you have completed updating the
filters.
</h2>
</p>
);
}
const resultsTable = (

View File

@ -408,3 +408,8 @@ svg.notification-icon {
text-align: right;
margin-right: 10px;
}
.please-press-filter-button {
margin-bottom: 1em;
font-weight: bold;
}