Skip to content

Commit

Permalink
Merge pull request #66 from EdwinBetanc0urt/bugfix/processes-uuid-def…
Browse files Browse the repository at this point in the history
…ined-on-tab

fix: Process uuid defined on `Tab` or `Browser`.
  • Loading branch information
yamelsenih authored Nov 12, 2024
2 parents 9edd3da + 544a5fa commit 21cc81d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/models/browser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ pub struct Browser {
// External Reference
pub context_column_names: Option<Vec<String>>,
pub process_id: Option<i32>,
pub process_uuid: Option<String>,
pub process: Option<DictionaryEntity>,
pub window_id: Option<i32>,
pub window: Option<DictionaryEntity>,
Expand Down Expand Up @@ -166,6 +167,7 @@ impl Default for Browser {
// External Reference
context_column_names: None,
process_id: None,
process_uuid: None,
process: None,
window_id: None,
window: None,
Expand Down
2 changes: 2 additions & 0 deletions src/models/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ pub struct WindowTab {
pub context_column_names: Option<Vec<String>>,
pub window_id: Option<i32>,
pub process_id: Option<i32>,
pub process_uuid: Option<String>,
pub process: Option<Process>,
pub processes_uuid: Option<Vec<String>>,
pub processes: Option<Vec<Process>>,
// Fields
pub fields: Option<Vec<WindowField>>
Expand Down

0 comments on commit 21cc81d

Please sign in to comment.