Default to multiple column mode if backend doesn't have appropriate seting

This commit is contained in:
Thibaut Girka 2019-06-12 17:15:43 +02:00 committed by ThibG
parent b222d1ae26
commit 47307e6c13
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ export const version = getMeta('version');
export const mascot = getMeta('mascot');
export const isStaff = getMeta('is_staff');
export const defaultContentType = getMeta('default_content_type');
export const forceSingleColumn = !getMeta('advanced_layout');
export const forceSingleColumn = getMeta('advanced_layout') === false;
export default initialState;