diff --git a/core/static/js/column-shifter.js b/core/static/js/column-shifter.js index 32f2e33..3d7ce93 100644 --- a/core/static/js/column-shifter.js +++ b/core/static/js/column-shifter.js @@ -25,7 +25,29 @@ $(document).ready(function(){ var get_column_shifter_storage = function(){ var storage = localStorage.getItem(COLUMN_SHIFTER_STORAGE_ACCESOR); if (storage === null) { - storage = {}; + storage = { + "drilldown-table": { + "date": "off", + "time": "off", + "id": "off", + "num": "off", + "channel_nsfw": "off", + "channel_category": "off", + "channel_category_id": "off", + "channel_category_nsfw": "off", + "channel_id": "off", + "guild_member_count": "off", + "bot": "off", + "msg_id": "off", + "net_id": "off", + "user_id": "off", + "num_users": "off", + "num_chans": "off", + "exemption": "off", + "version_sentiment": "off", + "num": "off", + }, + }; } else { storage = JSON.parse(storage); } diff --git a/core/templates/base.html b/core/templates/base.html index df69eb9..68310a1 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -61,11 +61,11 @@