I don’t wanna be early here, but I am pretty sure the “sort-by” icons are inverted in Bases.
This is new to old (larger to smaller/descending) so the ^ icon should be flipped.
Btw, you should create a bases tag on the forums.
I don’t wanna be early here, but I am pretty sure the “sort-by” icons are inverted in Bases.
This is new to old (larger to smaller/descending) so the ^ icon should be flipped.
Btw, you should create a bases tag on the forums.
I am not sure I understand you.
Arrow up is newest to oldest.
Arrow down is oldest to newest.
Can you kindly repost this and make sure you follow the bug report template? Thanks
Usually up arrows mean ascending and down arrows mean descending, so sorting timestamps with a down arrow should result in descending timestamps (i.e., newest to oldest).
Shouldn’t it be the other way around? Similar to how < and > work..
It figured this was easy enough to understand without filling a full template, I am very busy.
See:
Or maybe I am just used to this because my many years on MacOS:
I checked a couple of software and maybe there isn’t a universal agreement. we’ll double check this.
I also think the <> are flipped:
For me, the “correct” way it is:
I’m here to add another voice to this.
I checked multiple applications that show an arrow at the top of a sorted column. What I found was:
All use an up arrow to indicate ascending sort, and a down arrow for descending sort. Given that the two mainstream OSes (Windows and Mac) do it this way, I think doing it differently will cause confusion.
Otherwise, please either give an option to customise it, or use some other indicator for the sort direction.
Well, you can, I’ve been doing that since the minute I saw it.
/* Temp: flip Based sorting icon */
.bases-table-header-sort svg.svg-icon.lucide-chevron-down {
transform: rotate(180deg);
}
.bases-table-header-sort svg.svg-icon.lucide-chevron-up {
transform: rotate(180deg);
}
we flipped this in 1.9.3
Thank you – working as expected!
I got a bit confused as I was using @Kaleo’s workaround for the last few days, and suddenly it flipped back. It took me a while to work out it was due to the Obisidan update, and I had to remove the workaround