You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will produce `<a class="sorted-asc"...>` when sorted ascending, allowing you to style the indicator withCSS:
201
201
202
202
```css
203
-
.sorted-asc::after { content: "\2191"; } /* Up arrow */
204
-
.sorted-desc::after { content: "\2193"; } /* Down arrow */
203
+
.sorted-asc::after {
204
+
content: "\2191";
205
+
} /* Up arrow */
206
+
.sorted-desc::after {
207
+
content: "\2193";
208
+
} /* Down arrow */
205
209
```
206
210
207
211
### Error handling
@@ -213,11 +217,13 @@ This will produce `<a class="sorted-asc" ...>` when sorted ascending, allowing y
213
217
By default, clicking a column header sorts ascending first. You can change this per-column to sort descending on first click (useful for date columns where you typically want most recent first):
0 commit comments