Fixed: Update Indexer Store Select Schema

This commit is contained in:
Qstick 2018-05-20 01:06:28 -04:00
parent ef6c93c784
commit 74c2da5088

View file

@ -103,7 +103,8 @@ export default {
[SELECT_INDEXER_SCHEMA]: (state, { payload }) => {
return selectProviderSchema(state, section, payload, (selectedSchema) => {
selectedSchema.enableRss = selectedSchema.supportsRss;
selectedSchema.enableSearch = selectedSchema.supportsSearch;
selectedSchema.enableAutomaticSearch = selectedSchema.supportsSearch;
selectedSchema.enableInteractiveSearch = selectedSchema.supportsSearch;
return selectedSchema;
});