mirror of
https://github.com/nushell/nushell
synced 2025-01-13 13:49:21 +00:00
Fix bug where --with-symlink-targets
would not display the targets
column (#1300)
This commit is contained in:
parent
407f36af29
commit
2c529cd849
1 changed files with 1 additions and 1 deletions
|
@ -7,8 +7,8 @@ pub(crate) fn dir_entry_dict(
|
|||
metadata: &std::fs::Metadata,
|
||||
tag: impl Into<Tag>,
|
||||
full: bool,
|
||||
with_symlink_targets: bool,
|
||||
name_only: bool,
|
||||
with_symlink_targets: bool,
|
||||
) -> Result<Value, ShellError> {
|
||||
let tag = tag.into();
|
||||
let mut dict = TaggedDictBuilder::new(&tag);
|
||||
|
|
Loading…
Reference in a new issue