Corrected indentation in metadata.rst

pull/363/head
Simon Willison 2018-08-28 02:56:34 -07:00
rodzic 5cf0c6c91c
commit 9e1fca4b01
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 17E2DEA2588B7F52
1 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -123,20 +123,20 @@ You can also disable sorting entirely by setting ``"sortable_columns": []``
By default, database views in Datasette do not support sorting. You can use ``sortable_columns`` to enable specific sort orders for a view called ``name_of_view`` in the database ``my_database`` like so::
{
"databases": {
"my_database": {
"tables": {
"name_of_view": {
"sortable_columns": [
"clicks",
"impressions"
]
{
"databases": {
"my_database": {
"tables": {
"name_of_view": {
"sortable_columns": [
"clicks",
"impressions"
]
}
}
}
}
}
}
.. _label_columns: