Hide button behind a mini flag

This commit is contained in:
Ilya Ig. Petrov 2017-05-30 18:57:33 +05:00
parent d0f9960831
commit c3a641d85f

View File

@ -62,6 +62,8 @@ export default function getExceptions(theState) {
}) })
} }
{
!props.flags.ifMini && (
<InfoLi <InfoLi
type="checkbox" type="checkbox"
conf={{ conf={{
@ -77,6 +79,8 @@ export default function getExceptions(theState) {
}} }}
nodeAfterLabel={(<span>Собирать <a href="../errors-to-exc/index.html">последние ошибки</a> сайтов</span>)} nodeAfterLabel={(<span>Собирать <a href="../errors-to-exc/index.html">последние ошибки</a> сайтов</span>)}
/> />
)
}
</ul> </ul>
</div> </div>
); );