mirror of
https://github.com/nushell/nushell
synced 2025-01-12 05:09:04 +00:00
Fix 1068
This commit is contained in:
parent
28df1559ea
commit
dbadf9499e
2 changed files with 4 additions and 2 deletions
|
@ -128,7 +128,7 @@ pretty_assertions = "0.6.1"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
toml = "0.5.5"
|
toml = "0.5.5"
|
||||||
serde = { version = "1.0.102", features = ["derive"] }
|
serde = { version = "1.0.103", features = ["derive"] }
|
||||||
nu-build = { version = "0.1.0", path = "./crates/nu-build" }
|
nu-build = { version = "0.1.0", path = "./crates/nu-build" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
@ -32,7 +32,9 @@ impl Plugin for TextView {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn sink(&mut self, _call_info: CallInfo, input: Vec<Value>) {
|
fn sink(&mut self, _call_info: CallInfo, input: Vec<Value>) {
|
||||||
view_text_value(&input[0]);
|
if !input.is_empty() {
|
||||||
|
view_text_value(&input[0]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue