From 7e2a95204ef15497e317f02403c9955cebdad522 Mon Sep 17 00:00:00 2001 From: ntr Date: Sat, 25 May 2019 15:52:37 +1000 Subject: [PATCH] more renaming --- client/src/components/login.component.jsx | 4 +-- client/src/components/login.container.jsx | 1 + client/src/components/spawn.button.jsx | 1 - ops/init_db.sh | 8 +++--- ops/knexfile.js | 4 +-- ....js => 20180916221309_constructs_table.js} | 0 ops/migrations/20181020104420_games.js | 10 ------- ops/migrations/20181228162012_zones.js | 28 ------------------- ...cryps.gg.nginx.conf => mnml.gg.nginx.conf} | 13 +++++---- server/.env | 2 +- server/Cargo.toml | 4 +-- server/src/account.rs | 5 ++-- server/src/main.rs | 2 +- 13 files changed, 23 insertions(+), 59 deletions(-) rename ops/migrations/{20180916221309_cryps_table.js => 20180916221309_constructs_table.js} (100%) delete mode 100644 ops/migrations/20181228162012_zones.js rename ops/{cryps.gg.nginx.conf => mnml.gg.nginx.conf} (68%) diff --git a/client/src/components/login.component.jsx b/client/src/components/login.component.jsx index 67b89685..3a2d7e2d 100644 --- a/client/src/components/login.component.jsx +++ b/client/src/components/login.component.jsx @@ -13,13 +13,13 @@ function renderLogin({ submitLogin, submitRegister }) { className="login-input" type="email" placeholder="username" - onChange={e => (details.name = e.target.value)} + onInput={e => details.name = e.target.value} /> (details.password = e.target.value)} + onInput={e => details.password = e.target.value} />