fix: can't input url in Grid (#2737)

* fix: launch url in url cell

* fix: can't input url in Grid

* feat: support selecting or deselecting all items in export page

* fix: remove the circle shape

* fix: light mode toolbar color

* chore: update language and adjust the launch page
This commit is contained in:
Lucas.Xu
2023-06-08 15:46:33 +08:00
committed by GitHub
parent 37547a6485
commit 02b7149514
12 changed files with 149 additions and 108 deletions

View File

@ -11,7 +11,7 @@ use serde::Serialize;
use crate::kv::schema::{kv_table, kv_table::dsl, KV_SQL};
use crate::sqlite::{DBConnection, Database, PoolConfig};
const DB_NAME: &str = "kv.db";
const DB_NAME: &str = "cache.db";
lazy_static! {
static ref KV_HOLDER: RwLock<KV> = RwLock::new(KV::new());
}