Skip to content

Commit

Permalink
feat(mwpw-155425): unit tests for event sort stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheridan Sunier authored and Sheridan Sunier committed Nov 11, 2024
1 parent 1b5f57d commit 420aec4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/app.css

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Chimera UI Libraries - Build 0.23.0 (11/11/2024, 10:28:14)
* Chimera UI Libraries - Build 0.23.0 (11/11/2024, 10:52:20)
*
*/
/******/ (function(modules) { // webpackBootstrap
Expand Down Expand Up @@ -49117,6 +49117,8 @@ function eventTiming() {
cards = cards.concat(onDemand);
}if (sanitizedEventFilter.indexOf('not-timed') > -1) {
cards = cards.concat(notTimed);
} else {
cards = [].concat(live, upComing, onDemand, notTimed);
}

/*
Expand Down
4 changes: 2 additions & 2 deletions dist/main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.source.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions react/src/js/components/Consonant/Helpers/eventSort.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ function eventTiming(sessions = [], eventFilter = []) {
cards = cards.concat(onDemand);
} if (sanitizedEventFilter.indexOf('not-timed') > -1) {
cards = cards.concat(notTimed);
} else {
cards = [].concat(live, upComing, onDemand, notTimed);
}

/*
Expand Down

0 comments on commit 420aec4

Please sign in to comment.