Skip to content

Commit 83c1ab4

Browse files
committed
sort extension table by Id
1 parent 5b2c26f commit 83c1ab4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/list.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ quarto_list_extensions <- function() {
2222
if (grepl("No extensions are installed", stderr_cleaned)) {
2323
invisible()
2424
} else {
25-
utils::read.table(
25+
df <- utils::read.table(
2626
text = stderr_cleaned,
2727
header = TRUE,
2828
fill = TRUE,
2929
sep = "",
3030
stringsAsFactors = FALSE
3131
)
32+
df[order(df$Id), ]
3233
}
3334
}
3435

0 commit comments

Comments
 (0)