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 1
1
[package ]
2
2
name = " rust-sql-gui-ui"
3
- version = " 1.0.0-alpha.4 "
3
+ version = " 1.0.0-alpha.5 "
4
4
edition = " 2021"
5
5
6
6
# 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 1
1
[package ]
2
2
name = " common"
3
- version = " 1.0.0-alpha.4 "
3
+ version = " 1.0.0-alpha.5 "
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rust-sql-gui"
3
- version = " 1.0.0-alpha.4 "
3
+ version = " 1.0.0-alpha.5 "
4
4
description = " PostgreSQL GUI written in Rust"
5
5
authors = [" Daniel Boros" ]
6
6
license = " "
Original file line number Diff line number Diff line change 8
8
},
9
9
"package" : {
10
10
"productName" : " RSQL" ,
11
- "version" : " 1.0.0-alpha.4 "
11
+ "version" : " 1.0.0"
12
12
},
13
13
"tauri" : {
14
14
"allowlist" : {
Original file line number Diff line number Diff line change @@ -107,8 +107,7 @@ impl ProjectsStore {
107
107
match project {
108
108
Project :: POSTGRESQL ( project) => {
109
109
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) {
112
111
return Ok ( tables. clone ( ) ) ;
113
112
}
114
113
}
You can’t perform that action at this time.
0 commit comments