We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed26960 commit 2b1389aCopy full SHA for 2b1389a
src/store/console/getters.ts
@@ -9,7 +9,7 @@ export const getters: GetterTree<ConsoleState, RootState> = {
9
* Return a list of all available console entries, filtered appropriately.
10
*/
11
getConsoleEntries: (state, getters, rootState) => {
12
- const hideTempWaits = rootState.config.uiSettings.general.hideTempWaits || true
+ const hideTempWaits = rootState.config.uiSettings.general.hideTempWaits
13
14
const items = state.console.filter(entry => {
15
return (!entry.time || entry.time * 1000 > state.lastCleared) &&
0 commit comments