fix(swap-layouts): properly identify plugin aliases with initial cwd (#3250)
* fix(swap-layouts): properly identify plugin aliases with initial cwd * style(fmt): rustfmt
This commit is contained in:
parent
2b6d4ad8e5
commit
57676f161f
1 changed files with 1 additions and 3 deletions
|
|
@ -435,9 +435,7 @@ pub struct PluginAlias {
|
||||||
|
|
||||||
impl PartialEq for PluginAlias {
|
impl PartialEq for PluginAlias {
|
||||||
fn eq(&self, other: &Self) -> bool {
|
fn eq(&self, other: &Self) -> bool {
|
||||||
self.name == other.name
|
self.name == other.name && self.configuration == other.configuration
|
||||||
&& self.configuration == other.configuration
|
|
||||||
&& self.initial_cwd == other.initial_cwd
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue