remove unnecessary code

This commit is contained in:
jochen weber
2020-07-26 12:31:42 +02:00
parent f901a7fe0b
commit b905db0c22

View File

@@ -5,10 +5,6 @@ import {BRIGHTNESS_FILTER} from './filters.js'
const ALL_PODS = {}
const showAll = (pod) => {
return true
}
const showNotReady = (pod) => {
if (pod.phase == 'Succeeded') {
return false
@@ -23,7 +19,7 @@ const showNotReady = (pod) => {
const ALL_STATUS_FILTERS = [
{
text: 'SHOW: All', value: showAll
text: 'SHOW: All', value: true
},
{
text: 'SHOW: NotReady', value: showNotReady