Display Query Templates dropdown even when status is null
parent
437074fb47
commit
bbbcfdde1c
|
@ -4,7 +4,11 @@ import classnames from 'classnames'
|
||||||
|
|
||||||
const QueryStatus = ({status, children}) => {
|
const QueryStatus = ({status, children}) => {
|
||||||
if (!status) {
|
if (!status) {
|
||||||
return <div className="query-editor--status" />
|
return (
|
||||||
|
<div className="query-editor--status">
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status.loading) {
|
if (status.loading) {
|
||||||
|
|
Loading…
Reference in New Issue