From 09c396d5a351b7a33895aa24cf78ee6323a0372f Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 14 May 2023 18:05:28 +0000 Subject: [PATCH] Default the files panel to expanded. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4295 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/client.js b/core/client.js index 69faaf48..d0d1acf1 100644 --- a/core/client.js +++ b/core/client.js @@ -218,7 +218,7 @@ class TfFilesPaneElement extends LitElement { constructor() { super(); - this.expanded = window.localStorage.getItem('files') == '1'; + this.expanded = window.localStorage.getItem('files') != '0'; this.files = {}; }