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,21 +62,25 @@ export default function getExceptions(theState) {
}) })
} }
<InfoLi {
type="checkbox" !props.flags.ifMini && (
conf={{ <InfoLi
key: 'lookupLastErrors', type="checkbox"
desc: 'Собирать последние ошибки в запросах, чтобы вручную добавлять избранные из них в исключения.', conf={{
value: props.bgWindow.apis.lastErrors.ifCollecting key: 'lookupLastErrors',
}} desc: 'Собирать последние ошибки в запросах, чтобы вручную добавлять избранные из них в исключения.',
onChange={(event) => { value: props.bgWindow.apis.lastErrors.ifCollecting
}}
onChange={(event) => {
props.bgWindow.apis.lastErrors.ifCollecting = event.target.checked; props.bgWindow.apis.lastErrors.ifCollecting = event.target.checked;
props.funs.setStatusTo('Сделано.'); props.funs.setStatusTo('Сделано.');
}} }}
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>
); );