fix 'Don't set file modification time' behavior

closes #103
This commit is contained in:
2023-11-21 13:43:51 +01:00
parent ec3a5ad1ee
commit 3f1f67b2c6
2 changed files with 8 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ export const serverPortState = atom<number>({
export const latestCliArgumentsState = atom<string>({
key: 'latestCliArgumentsState',
default: localStorage.getItem('cli-args') || '',
default: localStorage.getItem('cli-args') || '--no-mtime',
effects: [
({ onSet }) =>
onSet(a => localStorage.setItem('cli-args', a.toString()))