Better name for app state (#1300)

* Better name for app state

* Snapshot
This commit is contained in:
Lipis 2020-04-08 01:31:28 +03:00 committed by GitHub
parent 9a1af38c97
commit 26fd2fe165
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 265 additions and 264 deletions

View file

@ -1,5 +1,6 @@
import { AppState, FlooredNumber } from "./types";
import { getDateTime } from "./utils";
import { t } from "./i18n";
export const DEFAULT_FONT = "20px Virgil";
@ -28,7 +29,7 @@ export function getDefaultAppState(): AppState {
cursorY: 0,
cursorButton: "up",
scrolledOutside: false,
name: `excalidraw-${getDateTime()}`,
name: `${t("labels.untitled")}-${getDateTime()}`,
username: "",
isCollaborating: false,
isResizing: false,