Skip to content

Commit

Permalink
fix: array of table completions.
Browse files Browse the repository at this point in the history
  • Loading branch information
yassun7010 committed Jan 29, 2025
1 parent b9054b0 commit dfb5fdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/server/src/completion/value/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ impl FindCompletionContents for document_tree::Table {
| document_tree::Value::OffsetDateTime(_)
| document_tree::Value::LocalDateTime(_)
| document_tree::Value::LocalDate(_)
| document_tree::Value::LocalTime(_)
| document_tree::Value::Array(_) => continue,
document_tree::Value::Table(_)
| document_tree::Value::LocalTime(_) => continue,
document_tree::Value::Array(_)
| document_tree::Value::Table(_)
| document_tree::Value::Incomplete { .. } => {}
}
}
Expand Down

0 comments on commit dfb5fdd

Please sign in to comment.