File tree Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " rust-sql-gui-ui"
3- version = " 1.0.0-alpha.4 "
3+ version = " 1.0.0-alpha.5 "
44edition = " 2021"
55
66# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Original file line number Diff line number Diff line change 11[package ]
22name = " common"
3- version = " 1.0.0-alpha.4 "
3+ version = " 1.0.0-alpha.5 "
44edition = " 2021"
55
66[dependencies ]
Original file line number Diff line number Diff line change 11[package ]
22name = " rust-sql-gui"
3- version = " 1.0.0-alpha.4 "
3+ version = " 1.0.0-alpha.5 "
44description = " PostgreSQL GUI written in Rust"
55authors = [" Daniel Boros" ]
66license = " "
Original file line number Diff line number Diff line change 88 },
99 "package" : {
1010 "productName" : " RSQL" ,
11- "version" : " 1.0.0-alpha.4 "
11+ "version" : " 1.0.0"
1212 },
1313 "tauri" : {
1414 "allowlist" : {
Original file line number Diff line number Diff line change @@ -107,8 +107,7 @@ impl ProjectsStore {
107107 match project {
108108 Project :: POSTGRESQL ( project) => {
109109 if let Some ( tables) = & project. tables {
110- let tables = tables. get ( schema) . unwrap ( ) ;
111- if !tables. is_empty ( ) {
110+ if let Some ( tables) = tables. get ( schema) {
112111 return Ok ( tables. clone ( ) ) ;
113112 }
114113 }
You can’t perform that action at this time.
0 commit comments