Fixes typo in syntax of DataTables row_actions

Replaces the '-' with '=' in the line listing row_actions for the
DataTale.

Change-Id: Id5c6bdee0695e3db7b021bbf899f7ebcabe55fd5
This commit is contained in:
Revon Mathews 2017-01-31 15:23:21 -06:00
parent 8708885270
commit 6cc7d0b13e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ represented. Example::
class Meta(object):
name = "my_table"
table_actions = (MyAction, MyOtherAction)
row_actions - (MyAction)
row_actions = (MyAction)
A full reference is included below: